-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (44 loc) · 1.33 KB
/
update-dist.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
45
46
name: 'Update dist folder'
on:
push:
branches-ignore: renovate/*
permissions:
contents: write
pull-requests: write
jobs:
dist-changed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: |
npm install
- name: Package (update dist folder)
run: |
npm run update-dist
- name: Did dist folder changed?
run: |
EXIT_CODE=0
git update-index --refresh dist/* && git diff-index --quiet HEAD dist || EXIT_CODE=$?
# Set environment variable
echo "EXIT_CODE_DIST_CHANGED=$EXIT_CODE" >> $GITHUB_ENV
- name: Create PR
if: ${{ env.EXIT_CODE_DIST_CHANGED == 1 }}
id: cpr
uses: peter-evans/create-pull-request@v7
with:
title: '🧹 Update dist folder'
commit-message: '🧹 Update dist folder'
add-paths: dist/
- name: Automerge PR
if: ${{ env.EXIT_CODE_DIST_CHANGED == 1 }}
run: gh pr merge --merge --auto "${{ steps.cpr.outputs.pull-request-number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}