mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-19 07:00:30 -04:00
Use gtar to create release archive
tar was producing an archived that binary that was failing to execute on developer machines. Since gtar is not available on windows or ubuntu, the windows and ubuntu releases was removed.
This commit is contained in:
parent
ab4c98678c
commit
d88a235883
2 changed files with 1 additions and 5 deletions
|
@ -35,4 +35,4 @@ runs:
|
|||
|
||||
- name: Make archive
|
||||
shell: bash
|
||||
run: tar -C ./target/${{ inputs.target }}/release --create --file=${{ steps.create-archive-name.outputs.archive }} ${{ inputs.binary }}
|
||||
run: gtar -C ./target/${{ inputs.target }}/release --create --file=${{ steps.create-archive-name.outputs.archive }} ${{ inputs.binary }}
|
||||
|
|
4
.github/workflows/release-cli.yml
vendored
4
.github/workflows/release-cli.yml
vendored
|
@ -10,12 +10,8 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- target: x86_64-unknown-linux-gnu
|
||||
os: ubuntu-latest
|
||||
- target: x86_64-apple-darwin
|
||||
os: macos-latest
|
||||
- target: x86_64-pc-windows-msvc
|
||||
os: windows-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout tagged commit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue