-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (38 loc) · 1.13 KB
/
CI-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# build and commit the dist folder after successful CI
name: CI build
on:
workflow_run:
workflows:
- "CI"
types:
- "completed"
branches: [master]
jobs:
on-success:
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
# build dist folder
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Set up Git commit author
run: git config --local user.email "github-actions[bot]@users.noreply.github.com" && git config --local user.name "github-actions[bot]"
- name: Create Github Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release --ci
# commit and push dist folder
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "build(packaging): ci build"
file_pattern: dist
add_options: "--force"