Auto-release #1107
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
# https://github.com/changesets/action | |
name: Auto-release | |
on: | |
schedule: | |
- cron: '15 8,12,16,20 * * *' | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
pull-requests: write | |
steps: | |
- 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 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: Build package | |
run: pnpm run build | |
- name: Check file existence | |
id: check_files | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: "./.changeset/changeset.md" | |
- name: Changeset version | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: pnpm changeset version | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
id: auto-commit-action | |
if: steps.check_files.outputs.files_exists == 'true' | |
with: | |
commit_message: Update version | |
commit_options: '--no-verify --signoff' | |
- name: Create Release | |
if: steps.check_files.outputs.files_exists == 'true' | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: pnpm run release | |
commit: "ci: release logos package" | |
title: "ci: release logos package" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Merge main to production | |
if: steps.changesets.outputs.published == 'true' | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
from_branch: main | |
target_branch: production | |
github_token: ${{ secrets.GITHUB_TOKEN }} |