1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-09-16 13:11:21 +02:00
schemsearch/.github/workflows/release-build.yml

30 Zeilen
718 B
YAML

2023-03-16 19:27:48 +01:00
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:
2023-03-16 19:51:59 +01:00
upload_url: ${{ github.event.release.upload_url }}
2023-03-16 19:27:48 +01:00
asset_path: schemsearch-cli.tar.gz
asset_name: schemsearch-cli-linux.tar.gz
asset_content_type: application/gzip