chore(deps): update yarn to v4.1.0 (#53) #64
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: ReleaseOrVersionPR | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
# Security: the release job can only be executed from this repo and from the main branch (not a remote thing) | |
if: ${{ github.repository == 'belgattitude/nextvalid' && contains('refs/heads/main',github.ref)}} | |
name: Release and changelog | |
permissions: | |
contents: write # to create release (changesets/action) | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
# To run comparison we need more than the latest commit. Keep the fetch-depth relatively | |
# high or set it to zero to get all commits from the git repo. | |
# @link https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches | |
fetch-depth: 0 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: 📥 Monorepo install | |
uses: ./.github/actions/yarn-nm-install | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: yarn g:release | |
setupGitUser: true | |
env: | |
# See https://github.com/changesets/action/issues/147 | |
HOME: ${{ github.workspace }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# The regular GITHUB_TOKEN won't allow the created "Version Packages" pr to | |
# trigger the regular CI workflow. This limitation can be circumvented by | |
# setting a custom PAT token from a GH account and setting it the secrets. | |
GITHUB_TOKEN: ${{ secrets.BELGATTITUDE_NEXT_VALID_TOKEN }} | |