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

Commit

Permalink
Fix syntax issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Jun 17, 2021
1 parent 1247259 commit 36708c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
python github-actions-matrix.py --triplets ${{ github.event.inputs.triplets }} --tests ${{ github.event.inputs.tests }} --period ${{ github.event.inputs.period }} --run ${{ github.event.inputs.run }}
elif [[ "${{ github.event_name }}" == "push" ]]
then
python github-actions-matrix.py --triplets x64-windows x64-windows-static x64-windows-static-md x86-windows --tests release
python github-actions-matrix.py --triplets x64-windows x64-windows-static x64-windows-static-md --tests release
fi
build:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

- name: Release
uses: softprops/action-gh-release@v1
if: "${{ github.event_name }}" == "push" && startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest' && matrix.test == 'release'
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest' && matrix.test == 'release'
with:
tag_name: ${{ github.ref }}
body: |
Expand Down

0 comments on commit 36708c1

Please sign in to comment.