1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-09-07 00:42:49 +02:00
schemsearch/.github/workflows/release-build.yml
2023-03-16 19:51:59 +01:00

30 Zeilen
718 B
YAML

name: Release Build
on:
release:
types:
- published
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --release
- name: Create Tarball
run: tar -czvf schemsearch-cli.tar.gz -C target/release schemsearch-cli
- name: upload linux artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: schemsearch-cli.tar.gz
asset_name: schemsearch-cli-linux.tar.gz
asset_content_type: application/gzip