-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
74 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# https://github.com/changesets/action | ||
name: Auto-release | ||
|
||
on: | ||
schedule: | ||
- cron: '15 8,12,16,20 * * *' | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
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@v2 | ||
with: | ||
version: 8.12.1 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18.x" | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- 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 }} |
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