chore(just): provide des for running release #6
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: Release the project | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
publish-github: | |
name: Publish on GitHub | |
runs-on: ${{ matrix.config.OS }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { OS: ubuntu-latest, TARGET: "x86_64-unknown-linux-gnu" } | |
- { OS: ubuntu-latest, TARGET: "x86_64-unknown-linux-musl" } | |
- { OS: ubuntu-latest, TARGET: "i686-unknown-linux-gnu" } | |
- { OS: ubuntu-latest, TARGET: "aarch64-unknown-linux-gnu" } | |
- { OS: ubuntu-latest, TARGET: "aarch64-unknown-linux-musl" } | |
- { OS: macos-latest, TARGET: "x86_64-apple-darwin" } | |
- { OS: macos-latest, TARGET: "aarch64-apple-darwin" } | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Set the release version | |
shell: bash | |
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.config.TARGET }} | |
override: true | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
command: build | |
args: --release --locked --target ${{ matrix.config.TARGET }} | |
- name: Prepare release assets | |
shell: bash | |
run: | | |
mkdir release/ | |
cp {LICENSE,README.md} release/ | |
cp target/${{ matrix.config.TARGET }}/release/x4 release/ | |
mv release/ x4-${{ env.RELEASE_VERSION }}/ | |
- name: Create release artifacts | |
shell: bash | |
run: | | |
if [ "${{ matrix.config.OS }}" = "windows-latest" ]; then | |
7z a -tzip "x4-${{ env.RELEASE_VERSION }}-${{ matrix.config.TARGET }}.zip" \ | |
x4-${{ env.RELEASE_VERSION }} | |
else | |
tar -czvf x4-${{ env.RELEASE_VERSION }}-${{ matrix.config.TARGET }}.tar.gz \ | |
x4-${{ env.RELEASE_VERSION }}/ | |
shasum -a 512 x4-${{ env.RELEASE_VERSION }}-${{ matrix.config.TARGET }}.tar.gz \ | |
> x4-${{ env.RELEASE_VERSION }}-${{ matrix.config.TARGET }}.tar.gz.sha512 | |
fi | |
- name: Upload the release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: x4-${{ env.RELEASE_VERSION }}-${{ matrix.config.TARGET }}.* | |
file_glob: true | |
overwrite: true | |
tag: ${{ github.ref }} | |
publish-crates-io: | |
name: Publish on crates.io | |
needs: publish-github | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Publish | |
uses: actions-rs/cargo@v1 | |
with: | |
command: publish | |
args: --locked --token ${{ secrets.CARGO_REGISTRY_TOKEN }} |