Skip to content

Commit

Permalink
fix: correct syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Nassri authored Sep 10, 2022
1 parent fb84873 commit 5d9d407
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,13 @@ jobs:
if: ${{ needs.release.outputs.published == 'true' }}

runs-on: ubuntu-latest

strategy:
matrix:
release: [ refs/tags/v${{ needs.release.outputs.version }} ]
release: [ "refs/tags/v${{ needs.release.outputs.version }}" ]
alias:
- refs/tags/v${{ needs.release.outputs.version-major }}
- refs/tags/v${{ needs.release.outputs.version-major }}.${{ needs.release.outputs.version-minor }}
- "refs/tags/v${{ needs.release.outputs.version-major }}"
- "refs/tags/v${{ needs.release.outputs.version-major }}.${{ needs.release.outputs.version-minor }}"

steps:
- uses: actions/github-script@v6
Expand Down

0 comments on commit 5d9d407

Please sign in to comment.