Skip to content

Commit f164f21

Browse files
committed
feat: debug workflow
1 parent 7cb8cbc commit f164f21

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release
22

33
on:
44
push:
5-
tags:
6-
- "[0-9]+.[0-9]+.[0-9]+"
5+
# tags:
6+
# - "[0-9]+.[0-9]+.[0-9]+"
77

88
permissions:
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

@@ -47,6 +56,14 @@ jobs:
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

@@ -96,4 +113,4 @@ jobs:
96113
--repo="$GITHUB_REPOSITORY" \
97114
--title="$TAG" \
98115
--generate-notes \
99-
"$ZIP"
116+
"$ZIP"

0 commit comments

Comments
 (0)