We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84bf32 commit ed9195dCopy full SHA for ed9195d
.github/workflows/ci.action.yml
@@ -1,11 +1,15 @@
1
on:
2
+ push:
3
+ branches:
4
+ - main
5
workflow_call:
6
pull_request:
7
paths:
8
- action.js
9
- action.yml
10
- package.json
11
- installer.sh
12
+ - .github/workflows/ci.action.yml
13
14
concurrency:
15
group: ${{ github.ref || 'ci' }}/action.ts
@@ -17,6 +21,7 @@ jobs:
17
21
steps:
18
22
- uses: actions/checkout@v4
19
23
- run: npm i
24
+ - run: npm run dist
20
25
- uses: ./
26
with:
27
version: null
scripts/publish-release.sh
@@ -77,7 +77,7 @@ fi
77
git checkout -b v$v_new-branch
78
npm run dist
79
git add ./action.js
80
-git commit --message $v_new
+git commit --message v$v_new
81
git tag v$v_new
82
git push origin v$v_new
83
0 commit comments