Skip to content

Commit 4f5e128

Browse files
committed
chore: add debug
1 parent 35c0bd4 commit 4f5e128

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/build.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
- uses: actions/checkout@v4
1717

18-
19-
2018
- name: Get Next version
2119
id: get-version
2220
uses: ietf-tools/[email protected]
@@ -25,11 +23,6 @@ jobs:
2523
branch: ${{ github.ref }}
2624
noVersionBumpBehavior: 'current'
2725

28-
- name: debug
29-
run: |
30-
echo ${{ steps.get-version.outputs.next }}
31-
echo ${{ steps.get-version.outputs.bump }}
32-
3326
- name: Set up Go
3427
uses: actions/setup-go@v4
3528
with:
@@ -38,15 +31,15 @@ jobs:
3831
- name: Make build folder
3932
run: mkdir build
4033

41-
- name: ls debug
42-
run: ls -a && pwd
43-
4434
- name: Update version in main.go
4535
shell: bash
4636
run: |
4737
new_version=${{ steps.get-version.outputs.nextStrict }}
4838
sed -i "s/const version = \"[0-9]*\.[0-9]*\.[0-9]*\"/const version = \"$new_version\"/g" ${{ github.workspace }}/main.go
4939
40+
- name: Debug
41+
run: cat ${{ github.workspace}}/main.go
42+
5043
- name: Build for Windows (amd64)
5144
run: |
5245
env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools.exe

0 commit comments

Comments
 (0)