summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-29 22:08:29 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-29 22:08:29 +0100
commitf1261c40b45fa95ac1d55407ea5c552b035a6581 (patch)
tree7f46c49fdfb3b7fdfc201d2325188e6fc3c7014d
parent2adb7ada424c81a069ee0d8af772b21eec0bee7b (diff)
downloadengarde-importer-f1261c40b45fa95ac1d55407ea5c552b035a6581.tar.gz
engarde-importer-f1261c40b45fa95ac1d55407ea5c552b035a6581.tar.bz2
engarde-importer-f1261c40b45fa95ac1d55407ea5c552b035a6581.zip
[release]: Fix github variable syntax
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 80df935..0a16dab 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -65,14 +65,14 @@ jobs:
run: go vet ./...
- name: Release Build
- run: go build -ldflags '-s -w ${matrix.ldflags}' -o ${matrix.output}
+ run: go build -ldflags '-s -w ${{ matrix.ldflags }}' -o ${{ matrix.output }}
- name: Upload Release
uses: ColinPitrat/update-release@v1.0.1
id: update-release
with:
token: ${{ secrets.GITHUB_TOKEN }}
- files: ${matrix.output}
+ files: ${{ matrix.output }}
tag: release