Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dashpay/dash-evo-tool
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Oct 15, 2024
2 parents f32e38f + 692ee8f commit bf2a88e
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,31 +98,51 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dash-evo-tool-x86_64-unknown-linux-gnu
path: ./release/dash-evo-tool-x86_64-linux
path: ./release/dash-evo-tool-x86_64-unknown-linux-gnu/

- 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
path: ./release/dash-evo-tool-aarch64-unknown-linux-gnu/

- 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
path: ./release/dash-evo-tool-x86_64-apple-darwin/

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

- name: Rename Linux X64 file
run: mv ./release/dash-evo-tool-x86_64-unknown-linux-gnu/dash-evo-tool ./release/dash-evo-tool-x86_64-linux

- name: Rename Linux ARM file
run: mv ./release/dash-evo-tool-aarch64-unknown-linux-gnu/dash-evo-tool ./release/dash-evo-tool-aarch64-linux

- name: Rename Mac x64 file
run: mv ./release/dash-evo-tool-x86_64-apple-darwin/dash-evo-tool ./release/dash-evo-tool-x86_64-mac

- name: Rename Mac ARM file
run: mv ./release/dash-evo-tool-aarch64-apple-darwin/dash-evo-tool ./release/dash-evo-tool-aarch64-mac

- name: Check dir
run: ls -lah ./release/dash-evo-tool-aarch64-apple-darwin

- name: Publish release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: ./release/dash-evo-tool-*
tag_name: ${{ github.event.inputs.tag }}
files: |
./release/dash-evo-tool-x86_64-linux
./release/dash-evo-tool-aarch64-linux
./release/dash-evo-tool-x86_64-mac
./release/dash-evo-tool-aarch64-mac
draft: false
prerelease: false
prerelease: true

0 comments on commit bf2a88e

Please sign in to comment.