attach artifact to release #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
release: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 1 * *' # Monthly | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-2019] | |
rust: [stable, beta] | |
configuration: [release] | |
include: | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
filename: gchimp | |
label: Ubuntu | |
- os: windows-2019 | |
filename: gchimp.exe | |
target: x86_64-pc-windows-msvc | |
label: Windows | |
- configuration: release | |
release-flag: '--release' | |
name: ${{ matrix.rust }} - ${{ matrix.label }} - ${{ matrix.configuration }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
override: true | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
- uses: Swatinem/[email protected] | |
- name: Build | |
uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --target ${{ matrix.target }} ${{ matrix.release-flag }} | |
- name: Preparing upload | |
run: | | |
mkdir gchimp | |
cp target/${{ matrix.target }}/${{ matrix.configuration }}/${{ matrix.filename }} gchimp/${{ matrix.filename }} | |
cp -r dist gchimp/ | |
mv gchimp/dist/config.toml gchimp/config.toml | |
- name: Download no_vtf Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
wget https://b5327157.srht.site/no_vtf/release/no_vtf-linux_x64.tar.xz | |
tar -xf no_vtf-linux_x64.tar.xz | |
cp -r no_vtf gchimp/dist/ | |
- name: Download no_vtf Windows | |
if: matrix.os == 'windows-2019' | |
run: | | |
curl -O https://b5327157.srht.site/no_vtf/release/no_vtf-windows_x64.zip | |
7z x no_vtf-windows_x64.zip | |
cp -r no_vtf gchimp/dist/ | |
- uses: actions/[email protected] | |
if: matrix.rust == 'stable' | |
with: | |
name: gchimp-${{ runner.os }}-${{ matrix.configuration }} | |
path: gchimp | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/') && matrix.rust == 'stable' && matrix.configuration == 'release' && !matrix.cross | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: gchimp-${{ runner.os }}-${{ matrix.configuration }}.zip | |
draft: true | |
fail_on_unmatched_files: true |