From 951f145776fcea4030f91f14dd61308bfd531e7d Mon Sep 17 00:00:00 2001 From: Cameron Dutro Date: Fri, 22 Sep 2023 11:48:35 -0700 Subject: [PATCH] Continue on failure --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f234bb0e4..7cf348814 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,14 +42,10 @@ jobs: client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }} installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }} - # - name: Setup tmate session - # uses: mxschmitt/action-tmate@v3 - # env: - # GITHUB_TOKEN: ${{ steps.get-access-token.outputs.access-token }} - - name: Create release pull request or publish to npm id: changesets uses: changesets/action@v1.4.5 + continue-on-error: true with: title: Release Tracking # This expects you to have a script called release which does a build for your packages and calls changeset publish @@ -57,3 +53,8 @@ jobs: env: GITHUB_TOKEN: ${{ steps.get-access-token.outputs.access-token }} NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} + + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + env: + GITHUB_TOKEN: ${{ steps.get-access-token.outputs.access-token }}