Skip to content

Commit

Permalink
update repo dispatch action and set owner to app token generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallear committed Jan 10, 2025
1 parent ce57a4a commit d5df9a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id: write_file
uses: timheuer/base64-to-file@v1
with:
fileName: 'secret.pgp'
fileName: "secret.pgp"
encodedString: ${{ secrets.SIGNING_SECRET_KEY_BASE64 }}
- name: Release
env:
Expand All @@ -40,6 +40,7 @@ jobs:
runs-on: ubuntu-latest
needs: [release]
strategy:
fail-fast: false
matrix:
repository:
- agorapulse/agorapulse-bom
Expand All @@ -50,12 +51,13 @@ jobs:
with:
app-id: ${{ secrets.AGORAPULSE_BOT_APP_ID }}
private-key: ${{ secrets.AGORAPULSE_BOT_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
- uses: actions/checkout@v4
- name: Semantic Version
id: version
uses: ncipollo/semantic-version-action@v1
- name: Dispatch to ${{ matrix.repository }}
uses: peter-evans/repository-dispatch@v1
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ steps.app-token.outputs.token }}
repository: ${{ matrix.repository }}
Expand Down

0 comments on commit d5df9a9

Please sign in to comment.