-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (43 loc) · 1.56 KB
/
publish-action.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
name: Publish action
on:
release:
types: released
workflow_dispatch:
concurrency: ${{ github.workflow }}
jobs:
publish-action:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- run: npm ci
- run: npm run build
- run: rm -rf node_modules
- run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git add -Af && git commit -m 'npm run build'
- run: git tag -f "$TAG" && git push -f origin "$TAG"
if: ${{ github.event_name == 'release' }}
env:
TAG: ${{ github.event.release.tag_name }}
- uses: actions/github-script@v7
if: ${{ github.event_name == 'release' && !github.event.release.prerelease }}
with:
script: |
const tagName = context.payload.release.tag_name;
const [major, minor, patch] = tagName.split('.');
const { exec } = require('@actions/exec');
async function tag(tag) {
await exec('git', ['tag', '-f', tag]);
await exec('git', ['push', '-f', 'origin', tag]);
}
await tag(`${major}.${minor}`);
await tag(`${major}`);
- run: git checkout -b ${{ github.ref_name }}-preview && git push -f origin ${{ github.ref_name }}-preview
if: ${{ github.event_name == 'workflow_dispatch' }}