mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
95b1558c8e
gtar is not installed on ubuntu so tar has to be used
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: Create release archive
|
|
description: Creates a zip archive for a release binary
|
|
inputs:
|
|
version:
|
|
description: 'The version of the binary'
|
|
required: true
|
|
binary:
|
|
description: 'The name of the binary to pack into the archive'
|
|
required: true
|
|
target:
|
|
description: 'The target triple, used to find the binary; pass it if the compilation was done with the `--target` argument'
|
|
required: false
|
|
outputs:
|
|
archive:
|
|
description: 'The name of the archive'
|
|
value: ${{ steps.create-archive-name.outputs.archive }}
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- id: create-archive-name
|
|
shell: python # Use python to have a prettier name for the archive on Windows.
|
|
run: |
|
|
import platform
|
|
os_info = platform.uname()
|
|
|
|
arch = os_info.machine
|
|
|
|
if "${{ inputs.target }}":
|
|
triple = "${{ inputs.target }}".split("-")
|
|
arch = triple[0]
|
|
|
|
archive_name=f'${{ inputs.binary }}_${{ inputs.version }}_{os_info.system}_{arch}.zip'
|
|
|
|
print(f'::set-output name=archive::{archive_name}')
|
|
|
|
- name: Make archive
|
|
shell: bash
|
|
run: |
|
|
cp -p ./target/${{ matrix.target }}/release/${{ inputs.binary }} ${{ inputs.binary }}.exe
|
|
7z a -tzip ${{ steps.create-archive-name.outputs.archive }} ${{ inputs.binary }}.exe
|