Skip to content

Commit

Permalink
fix path extraction paths
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhoesel committed Oct 13, 2022
1 parent e281e96 commit f99a080
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,17 @@ jobs:
uses: actions/download-artifact@v3
with:
name: ${{ github.event.repository.name }}_x86_64-unknown-linux-gnu
path: binaries/${{ github.event.repository.name }}_amd64
path: tmp/bin_amd64
- name: Move binary from artifact
run: mv tmp/bin_amd64/clouddns-nat-helper binaries/clouddns-nat-helper_amd64
- name: Get arm64 artifact
uses: actions/download-artifact@v3
with:
name: ${{ github.event.repository.name }}_aarch64-unknown-linux-gnu
path: binaries/${{ github.event.repository.name }}_arm64
path: tmp/bin_arm64
- name: Move binary from artifact
run: mv tmp/bin_arm64/clouddns-nat-helper binaries/clouddns-nat-helper_arm64


- name: Login to Docker Hub
uses: docker/login-action@v2
Expand Down

0 comments on commit f99a080

Please sign in to comment.