1 parent 041d50d commit 2bf174fCopy full SHA for 2bf174f
1 file changed
.github/workflows/build.yml
@@ -31,7 +31,10 @@ jobs:
31
filter: blob:none
32
33
- name: Build project
34
+ shell: bash
35
run: |
36
+ echo "check what shell i'm in--$0"
37
+ echo $0
38
chown -R $(whoami):$(whoami) .
39
make
40
mkdir -p dist
@@ -42,6 +45,8 @@ jobs:
42
45
if: ${{ inputs.release_type != '' }}
43
46
44
47
VERSION=$(make version)
48
+ echo "the next release version is--${VERSION}"
49
+ echo "cleaned is--${VERSION#[^0-9]}"
50
echo "tag_name=${VERSION#[^0-9]}" >> $GITHUB_OUTPUT
51
52
- name: Upload artifacts
0 commit comments