You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wow-btc-swap/.github/actions/create-release-archive/windows/action.yml

41 lines
1.3 KiB

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