Skip to content

Commit 3bd311f

Browse files
committed
fix name collision
1 parent 4c0e869 commit 3bd311f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- 'main'
77
paths:
8-
- 'VERSION'
8+
- 'version.txt'
99

1010
# Allows you to run this workflow manually from the Actions tab
1111
workflow_dispatch:
@@ -17,6 +17,6 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- run: |
20-
VERSION="$(cat VERSION)"
20+
VERSION="$(cat version.txt)"
2121
git tag "$VERSION"
2222
git push origin tag "$VERSION"

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/bootdotdev/bootdev/cmd"
1010
)
1111

12-
//go:embed VERSION
12+
//go:embed version.txt
1313
var version string
1414

1515
func main() {

VERSION renamed to version.txt

File renamed without changes.

0 commit comments

Comments
 (0)