-
Notifications
You must be signed in to change notification settings - Fork 3
94 lines (87 loc) · 2.84 KB
/
publish.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Publish
on:
release:
types: [created] # It will be triggered when a NON-draft release is created and published.
jobs:
distribute:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master # Otherwise it defaults to the version tag missing bump commit
fetch-depth: 0 # Fetch all history
- uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Clear dist folder
run: rm -rfv dist/
- name: Compile
run: npm run compile
- name: Amend dist folder to the commit
run: |-
if [[ -z $(git status -s) ]]; then
echo 'There are no changes in the distribution (dist folder)'
exit 0
fi
lastCommitSha=$(git rev-parse HEAD)
bumpCommitSha=$(git rev-list "${{ github.event.release.tag_name }}"..master | tail -1)
if [ "$lastCommitSha" != "$bumpCommitSha" ]; then
echo "Last commit ($lastCommitSha) is not same as ($bumpCommitSha)."
echo "Exiting as amending to the commit may have side effects"
exit 1
fi
git config user.name "$(git log -1 --pretty=format:'%an')" || exit 1
git config user.email "$(git log -1 --pretty=format:'%ae')" || exit 1
git add 'dist/' --force || exit 1
git commit --amend --no-edit || exit 1
git push -f || exit 1
create-package:
needs: distribute
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
with:
ref: master # Otherwise it defaults to the version tag missing bump commit
fetch-depth: 0 # Fetch all history
-
name: Checkout to bump commit
run: git checkout "$(git rev-list "${{ github.event.release.tag_name }}"..master | tail -1)"
-
name: Create dist folder
run: |
mkdir "/tmp/package-dist"
cp -r . "/tmp/package-dist"
rm -rf "/tmp/package-dist/.git"
rm -rf "/tmp/package-dist/.github"
rm -rf "/tmp/package-dist/node_modules"
-
name: Upload dist folder
uses: actions/upload-artifact@v4
with:
name: npm-artifact
path: /tmp/package-dist
publish-package:
needs: create-package
runs-on: ubuntu-latest
steps:
-
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: https://registry.npmjs.org/
-
name: Download npm artifact
uses: actions/download-artifact@v4
with:
name: npm-artifact
path: npm-dist
-
name: Publish npm package
run: cd npm-dist && npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}