Skip to content

Commit

Permalink
Attempt to fix changeset actions
Browse files Browse the repository at this point in the history
  • Loading branch information
camertron committed Aug 22, 2023
1 parent 1f4a26b commit 646a611
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,22 @@ jobs:

runs-on: ubuntu-latest
steps:
- id: get-access-token
uses: camertron/github-app-installation-auth-action@v1
with:
app-id: ${{ vars.PRIMER_APP_ID_SHARED }}
private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }}
client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }}
client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }}
installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }}

- name: Checkout repository
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
persist-credentials: false
token: ${{ steps.get-access-token.outputs.access-token }}

- name: Set up Node.js
uses: actions/setup-node@v3
Expand All @@ -33,18 +43,9 @@ jobs:
yarn
bundle install
- id: get-access-token
uses: camertron/github-app-installation-auth-action@v1
with:
app-id: ${{ vars.PRIMER_APP_ID_SHARED }}
private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }}
client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }}
client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }}
installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }}

- name: Create release pull request or publish to npm
id: changesets
uses: changesets/action@master
uses: changesets/action@main
with:
title: Release Tracking
version: yarn changeset:version
Expand Down

0 comments on commit 646a611

Please sign in to comment.