Fix release.yml workflow
This commit is contained in:
parent
d9c9d7f955
commit
2d14733732
1 changed files with 13 additions and 45 deletions
58
.github/workflows/release.yml
vendored
58
.github/workflows/release.yml
vendored
|
@ -1,64 +1,32 @@
|
||||||
name: 'release'
|
# .github/workflows/release.yml
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'release*'
|
||||||
|
- 'V*'
|
||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-tauri:
|
release:
|
||||||
|
name: release ${{ matrix.target }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [ubuntu-22.04, windows-latest]
|
|
||||||
include:
|
include:
|
||||||
- target: x86_64-pc-windows-gnu
|
- target: x86_64-pc-windows-gnu
|
||||||
archive: zip
|
archive: zip
|
||||||
- target: x86_64-unknown-linux-musl
|
- target: x86_64-unknown-linux-musl
|
||||||
archive: tar.gz
|
archive: tar.gz
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- uses: actions/checkout@master
|
||||||
uses: actions/checkout@v3
|
- name: Compile and release
|
||||||
|
|
||||||
- name: install Rust stable
|
|
||||||
uses: dtolnay/rust-toolchain@stable
|
|
||||||
|
|
||||||
- name: Setup and use cache
|
|
||||||
uses: Swatinem/rust-cache@v2
|
|
||||||
with:
|
|
||||||
# The prefix cache key, this can be changed to start a new cache manually.
|
|
||||||
# default: "v0-rust"
|
|
||||||
prefix-key: ""
|
|
||||||
|
|
||||||
# A cache key that is used instead of the automatic `job`-based key,
|
|
||||||
# and is stable over multiple jobs.
|
|
||||||
# default: empty
|
|
||||||
shared-key: ""
|
|
||||||
|
|
||||||
# An additional cache key that is added alongside the automatic `job`-based
|
|
||||||
# cache key and can be used to further differentiate jobs.
|
|
||||||
# default: empty
|
|
||||||
key: ""
|
|
||||||
|
|
||||||
# A whitespace separated list of env-var *prefixes* who's value contributes
|
|
||||||
# to the environment cache key.
|
|
||||||
# The env-vars are matched by *prefix*, so the default `RUST` var will
|
|
||||||
# match all of `RUSTC`, `RUSTUP_*`, `RUSTFLAGS`, `RUSTDOC_*`, etc.
|
|
||||||
# default: "CARGO CC CFLAGS CXX CMAKE RUST"
|
|
||||||
env-vars: ""
|
|
||||||
|
|
||||||
# The cargo workspaces and target directory configuration.
|
|
||||||
# These entries are separated by newlines and have the form
|
|
||||||
# `$workspace -> $target`. The `$target` part is treated as a directory
|
|
||||||
# relative to the `$workspace` and defaults to "target" if not explicitly given.
|
|
||||||
# default: ". -> target"
|
|
||||||
workspaces: ". -> target"
|
|
||||||
|
|
||||||
- name: Build and archive
|
|
||||||
uses: rust-build/rust-build.action@v1.4.3
|
uses: rust-build/rust-build.action@v1.4.3
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
RUSTTARGET: ${{ matrix.platform }}
|
RUSTTARGET: ${{ matrix.target }}
|
||||||
EXTRA_FILES: "README.md LICENSE"
|
ARCHIVE_TYPES: ${{ matrix.archive }}
|
Loading…
Add table
Add a link
Reference in a new issue