Skip to content

Commit 6f1dbc0

Browse files
authored
release: Use arch-specific paths (#508)
6166d32 update the Makefile to output binaries in architecture-specific target directories, but the release action was not updated to reflect this change.
1 parent 6166d32 commit 6f1dbc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
uses: ./.github/actions/package
3333
with:
3434
entrypoint: /linkerd/validate-checksec.sh
35-
args: /linkerd/expected-checksec.json "target/release/package/linkerd2-proxy-${{ steps.release-tag-meta.outputs.name }}-checksec.json"
35+
args: /linkerd/expected-checksec.json "target/x86_64-unknown-linux-gnu/release/package/linkerd2-proxy-${{ steps.release-tag-meta.outputs.name }}-checksec.json"
3636

3737
- name: release
3838
uses: softprops/action-gh-release@b21b43d
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
with:
4242
name: ${{ steps.release-tag-meta.outputs.name }}
43-
files: target/release/package/*
43+
files: target/x86_64-unknown-linux-gnu/release/package/*

0 commit comments

Comments
 (0)