We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403e930 commit 093bc81Copy full SHA for 093bc81
.github/workflows/autorelease-tag.yml
@@ -21,15 +21,18 @@ jobs:
21
go-version: 1.21.x
22
23
- name: Bump version in banner.go
24
+ working-directory: internal/runner
25
run: |
26
curl -LO https://raw.githubusercontent.com/projectdiscovery/utils/main/scripts/versionbump/versionbump.go
- go run versionbump.go -file internal/runner/banner.go -var version -part patch
27
+ go run versionbump.go -file banner.go -var version -part patch
28
29
- name: Create local changes
30
31
- git add internal/runner/banner.go
32
+ git add banner.go
33
34
- name: Commit files
35
36
37
git config --local user.email "[email protected]"
38
git config --local user.name "GitHub Action"
0 commit comments