Skip to content

Commit

Permalink
ci: remove unnecessary steps
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopf committed Sep 5, 2024
1 parent bec9fd9 commit 728cfa9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .github/actions/release-alpha/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ inputs:
npm_token:
description: Token to push code to npm
required: true
github_token:
description: Token to push code to github
required: true
runs:
using: 'composite'
steps:
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,9 @@ jobs:
options: --user 1001

steps:
# Use GitHub App token as a workaround to allow bypassing branch-protection rules
# https://github.com/orgs/community/discussions/13836#discussioncomment-8535364
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.GH_TOKENS_APP_ID }}
private-key: ${{ secrets.GH_TOKENS_APP_PRIVATE_KEY }}

- name: checkout repository
uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
fetch-depth: 0

# Install pnpm because it is not included in our container image
Expand All @@ -42,4 +33,3 @@ jobs:
uses: ./.github/actions/release-alpha
with:
npm_token: ${{ secrets.NPM_TOKEN }}
github_token: ${{ steps.app-token.outputs.token }}

0 comments on commit 728cfa9

Please sign in to comment.