Upcoming Release Changes (#314) #281
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: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 8 | |
- name: Setup Node v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Set version variables | |
id: vars | |
shell: bash | |
run: | | |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
echo "date=$(date +"%B %d, %Y")" >> $GITHUB_OUTPUT | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: dotansimha/changesets-action@v1.3.3 | |
with: | |
publish: 'pnpm release' | |
commit: 'chore(release): update monorepo packages versions' | |
title: 'Upcoming Release Changes' | |
createGithubReleases: true | |
githubReleaseName: ${{ steps.vars.outputs.date }} | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |