Skip to content

Commit

Permalink
secureli-275: switches to new private key var in repo environment secret
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisba11 committed Aug 16, 2023
1 parent 1955cb6 commit 7607f5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 33 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
name: GH Release
needs: [ build-test ]
runs-on: ubuntu-latest
environment: publish
concurrency: release
permissions:
id-token: write
Expand All @@ -36,8 +37,8 @@ jobs:
uses: tibdex/github-app-token@v1
id: app_token
with:
app_id: 360953
private_key: ${{ secrets.ACTIONHELPER }}
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -100,6 +101,7 @@ jobs:
name: Upload Homebrew Formula
if: needs.secureli-release.outputs.uploaded == 'true'
runs-on: ubuntu-latest
environment: publish
needs: secureli-release
steps:
- name: Display Inputs
Expand All @@ -109,8 +111,8 @@ jobs:
uses: tibdex/github-app-token@v1
id: app_token
with:
app_id: 360953
private_key: ${{ secrets.ACTIONHELPER }}
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: actions/checkout@v3
with:
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/publish_TEST.yml

This file was deleted.

0 comments on commit 7607f5d

Please sign in to comment.