Skip to content

Commit f92c3a8

Browse files
committed
Fix tag pushes
1 parent 09ded63 commit f92c3a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: release
22
on:
33
push:
4-
# tags:
5-
# - "v*"
4+
tags:
5+
- "v*"
66

77
permissions:
88
# Required to publish a release
@@ -38,7 +38,7 @@ jobs:
3838
go-version: "~1.20"
3939

4040
- name: Get Version
41-
run: echo "::set-output name=version::$(./scripts/version.sh)"
41+
run: echo "version=$(./scripts/version.sh)" >> $GITHUB_OUTPUT
4242
id: version
4343

4444
- name: Build

0 commit comments

Comments
 (0)