Skip to content

Commit f6a514d

Browse files
committed
Improve ability to publish
1 parent 23087bb commit f6a514d

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

.github/workflows/publish-action.yml

+20-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Publish action
22
on:
33
release:
44
types: released
5+
workflow_dispatch:
56
concurrency: ${{ github.workflow }}
67
jobs:
78
publish-action:
@@ -17,9 +18,26 @@ jobs:
1718
- run: npm ci
1819
- run: npm run build
1920
- 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"
2124
- run: git add -Af && git commit -m 'npm run build'
2225
- run: git tag -f "$TAG" && git push -f origin "$TAG"
26+
if: ${{ github.event_name == 'release' }}
2327
env:
2428
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

Comments
 (0)