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-18 10:27:34 +01:00

63 Zeilen
1.9 KiB
YAML

name: Release Build
on:
release:
types:
- published
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Cache Cargo modules
id: cache-cargo
uses: actions/cache@v3
env:
cache-name: cache-cargo-target-release
with:
path: target
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
- name: Build
run: cargo build --verbose --release -p schemsearch-cli
- name: Create Tarball
if: ${{ matrix.os != 'windows-latest' }}
run: tar -czvf schemsearch-cli-${{ matrix.os }}.tar.gz -C target/release schemsearch-cli
- name: upload linux/darwin artifact
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: schemsearch-cli-${{ matrix.os }}.tar.gz
asset_name: schemsearch-cli-${{ matrix.os }}.tar.gz
asset_content_type: application/gzip
- uses: vimtor/action-zip@v1
name: Compress
if: ${{ matrix.os == 'windows-latest' }}
with:
files: target/release/schemsearch-cli.exe
dest: schemsearch-cli-${{ matrix.os }}.zip
- name: upload windows artifact
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: schemsearch-cli-${{ matrix.os }}.zip
asset_name: schemsearch-cli-${{ matrix.os }}.zip
asset_content_type: application/zip