Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 15, 2024
1 parent 5a133ed commit e46a9c0
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: dash-evo-tool-${{ matrix.platform }}
name: dash-evo-tool-${{ matrix.target }}
path: target/${{ matrix.target }}/release/dash-evo-tool

continue-on-error: true
Expand All @@ -94,11 +94,29 @@ jobs:
needs: build-and-release
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
- name: Download Linux X64
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-${{ matrix.platform }}
path: ./release
name: dash-evo-tool-x86_64-unknown-linux-gnu
path: ./release/dash-evo-tool-x86_64-linux

- name: Download Linux ARM
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-aarch64-unknown-linux-gnu
path: ./release/dash-evo-tool-aarch64-linux

- name: Download Mac x64
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-x86_64-apple-darwin
path: ./release/dash-evo-tool-x86_64-mac

- name: Download Mac ARM
uses: actions/download-artifact@v3
with:
name: aarch64-apple-darwin
path: ./release/dash-evo-tool-aarch64-mac

- name: Publish release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit e46a9c0

Please sign in to comment.