Merge pull request #27 from open-frames/dj/transactions #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
permissions: | |
id-token: write | |
contents: write # to create release (changesets/action) | |
issues: write # to post issue comments (changesets/action) | |
pull-requests: write # to create pull request (changesets/action) | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
env: | |
SKIP_YARN_COREPACK_CHECK: '1' | |
- name: Install Yarn v3 | |
run: | | |
corepack enable | |
corepack prepare | |
- name: Install dependencies | |
run: yarn | |
- name: Build packages | |
run: yarn build | |
- name: Set auth token | |
run: | | |
echo npmAuthToken: "${{ secrets.NPM_TOKEN }}" >> ./.yarnrc.yml | |
- name: Publish | |
uses: changesets/action@v1 | |
with: | |
title: 'release: version packages' | |
commit: 'release: version packages' | |
publish: yarn release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |