We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041d50d commit fc58db8Copy full SHA for fc58db8
1 file changed
.github/workflows/build.yml
@@ -32,6 +32,8 @@ jobs:
32
33
- name: Build project
34
run: |
35
+ echo "check what shell i'm in--$0"
36
+ echo $0
37
chown -R $(whoami):$(whoami) .
38
make
39
mkdir -p dist
@@ -42,6 +44,8 @@ jobs:
42
44
if: ${{ inputs.release_type != '' }}
43
45
46
VERSION=$(make version)
47
+ echo "the next release version is--${VERSION}"
48
+ echo "cleaned is--${VERSION#[^0-9]}"
49
echo "tag_name=${VERSION#[^0-9]}" >> $GITHUB_OUTPUT
50
51
- name: Upload artifacts
0 commit comments