Skip to content

Commit

Permalink
Split workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hiletmis authored Feb 20, 2024
1 parent 4adb298 commit cbcb34d
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 36 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/auto-release.yml
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 }}
37 changes: 1 addition & 36 deletions .github/workflows/deployfe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,39 +68,4 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: ./viewer/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 version
uses: stefanzweifel/git-auto-commit-action@v5
if: steps.check_files.outputs.files_exists == 'true' && steps.auto-commit-action.outputs.changes_detected == 'false'
with:
commit_message: Update version
commit_options: '--no-verify --signoff'

- name: Create Release
if : steps.check_files.outputs.files_exists == 'true' && (github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'release'))
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 }}
folder: ./viewer/build

0 comments on commit cbcb34d

Please sign in to comment.