File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- name : Docker
1
+ name : Docker Publish
2
2
3
3
# This workflow uses actions that are not certified by GitHub.
4
4
# They are provided by a third-party and are governed by
@@ -8,7 +8,7 @@ name: Docker
8
8
on :
9
9
push :
10
10
# Publish semver tags as releases.
11
- tags : ["*.*.*"]
11
+ tags : ["v *.*.*"]
12
12
13
13
env :
14
14
# Use docker.io for Docker Hub if empty
Original file line number Diff line number Diff line change 1
- name : Update Version and Publish
1
+ name : Npm Publish
2
2
3
3
on :
4
4
release :
@@ -10,21 +10,20 @@ jobs:
10
10
steps :
11
11
- uses : actions/checkout@v3
12
12
with :
13
- token : ${{ secrets.GITHUB_TOKEN }}
14
13
ref : ${{ github.event.release.target_commitish }}
15
14
16
15
- name : Set up Node.js
17
16
uses : actions/setup-node@v3
18
17
with :
19
- node-version : " 18 "
18
+ node-version : " 22 "
20
19
registry-url : " https://registry.npmjs.org"
21
20
22
21
- name : Install dependencies
23
22
run : npm ci
24
23
25
24
- name : Extract version from release
26
25
id : extract_version
27
- run : echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
26
+ run : echo "VERSION=${GITHUB_REF#refs/tags/v }" >> $GITHUB_ENV
28
27
29
28
- name : Update version.ts
30
29
run : |
You can’t perform that action at this time.
0 commit comments