Skip to content

Commit

Permalink
release: Use arch-specific paths (#508)
Browse files Browse the repository at this point in the history
6166d32 update the Makefile to output binaries in architecture-specific
target directories, but the release action was not updated to reflect
this change.
  • Loading branch information
olix0r committed May 7, 2020
1 parent 6166d32 commit 6f1dbc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
uses: ./.github/actions/package
with:
entrypoint: /linkerd/validate-checksec.sh
args: /linkerd/expected-checksec.json "target/release/package/linkerd2-proxy-${{ steps.release-tag-meta.outputs.name }}-checksec.json"
args: /linkerd/expected-checksec.json "target/x86_64-unknown-linux-gnu/release/package/linkerd2-proxy-${{ steps.release-tag-meta.outputs.name }}-checksec.json"

- name: release
uses: softprops/action-gh-release@b21b43d
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: ${{ steps.release-tag-meta.outputs.name }}
files: target/release/package/*
files: target/x86_64-unknown-linux-gnu/release/package/*

0 comments on commit 6f1dbc0

Please sign in to comment.