Skip to content

Commit

Permalink
👷 🐛 fix pdf release conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Feb 26, 2025
1 parent e656945 commit 2372840
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pdf-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
echo "release_notes: ${{ github.event.inputs.release_notes }}"
- name: Update snapshot tag
if: ${{ needs.main-root.outputs.is-main && !github.event.inputs.create_release }}
if: ${{ needs.main-root.outputs.is-main == 'true' && !github.event.inputs.create_release == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand All @@ -111,7 +111,7 @@ jobs:
gh release edit SNAPSHOT --draft=false
- name: Create dated release
if: ${{ needs.main-root.outputs.is-main && github.event.inputs.create_release }}
if: ${{ needs.main-root.outputs.is-main == 'true' && github.event.inputs.create_release == 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_NOTES: ${{ inputs.release_notes }}
Expand Down

0 comments on commit 2372840

Please sign in to comment.