X Tutup
Skip to content

Commit fe9d390

Browse files
committed
1 parent 4bfde21 commit fe9d390

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/releases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
go-version: 1.15
1818
- name: Generate changelog
1919
run: |
20-
echo ::set-env name=GORELEASER_CURRENT_TAG::${GITHUB_REF#refs/tags/}
20+
echo "GORELEASER_CURRENT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
2121
git fetch --unshallow
2222
script/changelog | tee CHANGELOG.md
2323
- name: Run GoReleaser
@@ -127,8 +127,8 @@ jobs:
127127
- name: Prepare PATH
128128
shell: bash
129129
run: |
130-
echo "::add-path::$WIX\\bin"
131-
echo "::add-path::C:\\Program Files\\go-msi"
130+
echo "$WIX\\bin" >> $GITHUB_PATH
131+
echo "C:\\Program Files\\go-msi" >> $GITHUB_PATH
132132
- name: Build MSI
133133
id: buildmsi
134134
shell: bash

0 commit comments

Comments
 (0)
X Tutup