Skip to content

Commit

Permalink
fix: Missing branch input in publishing workflows (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz authored Apr 30, 2024
1 parent 3a6d8db commit 667b980
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
uses: ./.github/workflows/publish-jvm.yml
with:
snapshot: ${{ !(inputs.live-run || false) }}
branch: ${{ needs.tag.outputs.branch }}
permissions:
contents: read
packages: write
Expand All @@ -78,6 +79,7 @@ jobs:
uses: ./.github/workflows/publish-android.yml
with:
snapshot: ${{ !(inputs.live-run || false) }}
branch: ${{ needs.tag.outputs.branch }}
permissions:
contents: read
packages: write
Expand All @@ -88,6 +90,7 @@ jobs:
uses: ./.github/workflows/publish-dokka.yml
with:
live-run: ${{ inputs.live-run || false }}
branch: ${{ needs.tag.outputs.branch }}

publish-github:
needs: tag
Expand Down

0 comments on commit 667b980

Please sign in to comment.