Skip to content

Commit 6761d9d

Browse files
authored
ci: use pat to perform release and allow subsequent workflows to trigger (#112)
1 parent 5c22686 commit 6761d9d

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/release.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,11 @@ jobs:
2929
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
3030
- name: Prepare workspace snippet
3131
run: .github/workflows/workspace_snippet.sh ${{ env.GITHUB_REF_NAME }} > release_notes.txt
32-
- uses: tibdex/github-app-token@v1
33-
id: generate-token
34-
with:
35-
app_id: ${{ secrets.BCR_APP_ID }}
36-
private_key: ${{ secrets.BCR_APP_PRIVATE_KEY }}
3732
- name: Release
3833
uses: softprops/action-gh-release@v1
3934
with:
4035
prerelease: true
4136
# Use GH feature to populate the changelog automatically
4237
generate_release_notes: true
4338
body_path: release_notes.txt
44-
token: ${{ steps.generate-token.outputs.token }}
39+
token: ${{ secrets.ALEXEAGLE_RELEASE_PAT }}

0 commit comments

Comments
 (0)