Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Use block-style sequence in release workflow
Browse files Browse the repository at this point in the history
Update the `release` workflow to use a block-style sequence in the `matrix` for
its `release` job to mirror changes made in the `build` workflow.
  • Loading branch information
mcdonnnj committed Aug 27, 2021
1 parent 4e789d8 commit 5b46157
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
strategy:
matrix:
# Versions supported by AWS and lambci/lambda images
python-version: [3.6, 3.7, 3.8]
python-version:
- 3.6
- 3.7
- 3.8
steps:
- uses: actions/checkout@v2
- name: Build Docker image
Expand Down

0 comments on commit 5b46157

Please sign in to comment.