From a695cd8ec4ffb25d1cd075a2e388d5462e682a1c Mon Sep 17 00:00:00 2001 From: Diego Pascual Date: Tue, 3 Sep 2024 16:20:52 +0200 Subject: [PATCH] ci: remove unnecessary steps --- .github/workflows/release-alpha.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release-alpha.yml b/.github/workflows/release-alpha.yml index a917eaffaf..fc8d4aff50 100644 --- a/.github/workflows/release-alpha.yml +++ b/.github/workflows/release-alpha.yml @@ -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 @@ -42,4 +33,3 @@ jobs: uses: ./.github/actions/release-alpha with: npm_token: ${{ secrets.NPM_TOKEN }} - github_token: ${{ steps.app-token.outputs.token }}