Skip to content

Commit

Permalink
Change: Update release workflow for required --repository argument
Browse files Browse the repository at this point in the history
Passing `--repository` is required now. Therefore update pontos own
release workflow to pass the argument.
  • Loading branch information
bjoernricks committed Feb 6, 2024
1 parent 2ee191e commit f2db12b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GREENBONE_BOT_TOKEN }}
- name: Create release
run: |
poetry run pontos-release create --release-type calendar
poetry run pontos-release create --repository ${{ github.repository }} --release-type calendar
env:
GITHUB_USER: ${{ secrets.GREENBONE_BOT }}
GITHUB_TOKEN: ${{ secrets.GREENBONE_BOT_TOKEN }}
Expand All @@ -56,7 +56,7 @@ jobs:
rm tmp.file
- name: Sign assets for released version
run: |
poetry run pontos-release sign --signing-key ${{ secrets.GPG_FINGERPRINT }} --passphrase ${{ secrets.GPG_PASSPHRASE }}
poetry run pontos-release sign --repository ${{ github.repository }} --signing-key ${{ secrets.GPG_FINGERPRINT }} --passphrase ${{ secrets.GPG_PASSPHRASE }}
env:
GITHUB_USER: ${{ secrets.GREENBONE_BOT }}
GITHUB_TOKEN: ${{ secrets.GREENBONE_BOT_TOKEN }}

0 comments on commit f2db12b

Please sign in to comment.