File tree Expand file tree Collapse file tree 1 file changed +22
-5
lines changed
Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: Release
22
33on :
44 push :
5- tags :
6- - " [0-9]+.[0-9]+.[0-9]+"
5+ # tags:
6+ # - "[0-9]+.[0-9]+.[0-9]+"
77
88permissions :
99 contents : " write"
@@ -16,10 +16,19 @@ jobs:
1616 build :
1717 name : Build client
1818 runs-on : ubuntu-latest
19- container :
20- image : node:latest
2119 needs : tests
2220 steps :
21+ - name : Debug
22+ run : |
23+ echo whoami
24+ echo $PWD
25+ echo ls -l
26+ echo $TMPDIR
27+ cat /etc/os-release
28+
29+ - name : Setup node
30+ uses : actions/setup-node@v6
31+
2332 - name : Checkout code
2433 uses : actions/checkout@v4
2534
4756 ZIP : " ${{ github.ref_name }}.zip"
4857 needs : build
4958 steps :
59+ - name : Debug
60+ run : |
61+ whoami
62+ echo $PWD
63+ ls -l /
64+ echo $TMPDIR
65+ cat /etc/os-release
66+
5067 - name : Setup node
5168 uses : actions/setup-node@v6
5269
96113 --repo="$GITHUB_REPOSITORY" \
97114 --title="$TAG" \
98115 --generate-notes \
99- "$ZIP"
116+ "$ZIP"
You can’t perform that action at this time.
0 commit comments