We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c0e869 commit 3bd311fCopy full SHA for 3bd311f
.github/workflows/main.yml
@@ -5,7 +5,7 @@ on:
5
branches:
6
- 'main'
7
paths:
8
- - 'VERSION'
+ - 'version.txt'
9
10
# Allows you to run this workflow manually from the Actions tab
11
workflow_dispatch:
@@ -17,6 +17,6 @@ jobs:
17
steps:
18
- uses: actions/checkout@v3
19
- run: |
20
- VERSION="$(cat VERSION)"
+ VERSION="$(cat version.txt)"
21
git tag "$VERSION"
22
git push origin tag "$VERSION"
main.go
@@ -9,7 +9,7 @@ import (
"github.com/bootdotdev/bootdev/cmd"
)
12
-//go:embed VERSION
+//go:embed version.txt
13
var version string
14
15
func main() {
VERSION renamed to version.txt
0 commit comments