Changesets: Version Packages (#1301) #610
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: | |
fetch-depth: 0 | |
- name: Setup Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install Dependencies | |
uses: ./.github/actions/yarn-install | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
commit: "chore(release): Publish" | |
title: "Changesets: Version Packages" | |
publish: yarn release | |
# Workaround for https://github.com/changesets/changesets/issues/421 | |
version: yarn version-packages:ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Wait for NPM package propagation | |
if: steps.changesets.outputs.published == 'true' | |
run: sleep 30s | |
shell: bash | |
- name: Publish Starters | |
if: steps.changesets.outputs.published == 'true' | |
uses: LekoArts/actions-push-subdirectories@master | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_EMAIL: "[email protected]" | |
with: | |
args: examples LekoArts starter-name master |