@@ -2,6 +2,7 @@ name: Publish action
2
2
on :
3
3
release :
4
4
types : released
5
+ workflow_dispatch :
5
6
concurrency : ${{ github.workflow }}
6
7
jobs :
7
8
publish-action :
17
18
- run : npm ci
18
19
- run : npm run build
19
20
- run : rm -rf node_modules
20
- - uses : actions4git/setup-git@v1
21
+ - run : |
22
+ git config --global user.name "github-actions[bot]"
23
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
21
24
- run : git add -Af && git commit -m 'npm run build'
22
25
- run : git tag -f "$TAG" && git push -f origin "$TAG"
26
+ if : ${{ github.event_name == 'release' }}
23
27
env :
24
28
TAG : ${{ github.event.release.tag_name }}
25
- - uses : Actions-R-Us/actions-tagger@v2
29
+ - uses : actions/github-script@v7
30
+ if : ${{ github.event_name == 'release' && !github.event.release.prerelease }}
31
+ with :
32
+ script : |
33
+ const tagName = context.payload.release.tag_name;
34
+ const [major, minor, patch] = tagName.split('.');
35
+ const { exec } = require('@actions/exec');
36
+ async function tag(tag) {
37
+ await exec('git', ['tag', '-f', tag]);
38
+ await exec('git', ['push', '-f', 'origin', tag]);
39
+ }
40
+ await tag(`${major}.${minor}`);
41
+ await tag(`${major}`);
42
+ - run : git checkout -b ${{ github.ref_name }}-preview && git push -f origin ${{ github.ref_name }}-preview
43
+ if : ${{ github.event_name == 'workflow_dispatch' }}
0 commit comments