Update README #4
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Release | |
env: | |
RELEASE_BIN: pchain_compile | |
RELEASE_DIR: artifacts | |
GITHUB_REF: '${{ github.ref }}' | |
WINDOWS_TARGET: x86_64-pc-windows-msvc | |
MACOS_TARGET: x86_64-apple-darwin | |
LINUX_TARGET: x86_64-unknown-linux-gnu | |
jobs: | |
build: | |
name: Build artifacts | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-22.04 | |
rust: stable | |
- target: x86_64-apple-darwin | |
os: macos-12 | |
rust: stable | |
- target: x86_64-pc-windows-msvc | |
os: windows-2022 | |
rust: stable | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Query version number | |
id: get_version | |
shell: bash | |
run: | | |
echo "using version tag ${GITHUB_REF:10}" | |
echo ::set-output name=version::"${GITHUB_REF:10}" | |
- name: Install p7zip (MacOS) | |
if: matrix.os == 'macos-12' | |
run: brew install p7zip | |
- name: Add rustup target | |
run: rustup target add ${{ matrix.target }} | |
- name: Build | |
run: cargo build --release --target ${{ matrix.target }} | |
- name: Set RUSTFLAGS (Windows) | |
if: matrix.os == 'windows-2022' | |
run: echo "RUSTFLAGS=-Ctarget-feature=+crt-static" >> $GITHUB_ENV | |
- name: Create artifact directory | |
run: | | |
mkdir ${{ env.RELEASE_DIR }} | |
mkdir -p ${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }} | |
- name: Move binaries (Linux/MacOS) | |
if: matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-12' | |
run: | | |
mv ./target/${{ matrix.target }}/release/${{ env.RELEASE_BIN }} ${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}/${{ env.RELEASE_BIN }} | |
- name: Move binaries (Windows) | |
if: matrix.os == 'windows-2022' | |
shell: bash | |
run: | | |
cp ./target/${{ matrix.target }}/release/${{ env.RELEASE_BIN }}.exe ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}/${{ env.RELEASE_BIN }}.exe | |
- name: Create tarball | |
shell: bash | |
run: 7z a -ttar -so -an ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }} | 7z a -si ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}.tar.gz | |
- name: Upload Zip | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{ matrix.target }} | |
path: ./${{ env.RELEASE_DIR }} | |
release: | |
name: GitHub Release | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Query version number | |
id: get_version | |
shell: bash | |
run: | | |
echo "using version tag ${GITHUB_REF:10}" | |
echo ::set-output name=version::"${GITHUB_REF:10}" | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.get_version.outputs.VERSION }} | |
release_name: ${{ steps.get_version.outputs.VERSION }} | |
- name: Download Linux amd64 tarball | |
uses: actions/download-artifact@v2 | |
with: | |
name: ${{ env.LINUX_TARGET }} | |
- name: Download Windows tarball | |
uses: actions/download-artifact@v2 | |
with: | |
name: ${{ env.WINDOWS_TARGET }} | |
- name: Download MacOS tarball | |
uses: actions/download-artifact@v2 | |
with: | |
name: ${{ env.MACOS_TARGET }} | |
- name: Release Linux amd64 tarball | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.LINUX_TARGET }}.tar.gz | |
asset_content_type: application/gzip | |
asset_name: pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.LINUX_TARGET }}.tar.gz | |
- name: Release Windows tarball | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.WINDOWS_TARGET }}.tar.gz | |
asset_content_type: application/gzip | |
asset_name: pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.WINDOWS_TARGET }}.tar.gz | |
- name: Release MacOS tarball | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.MACOS_TARGET }}.tar.gz | |
asset_content_type: application/gzip | |
asset_name: pchain_compile-${{ steps.get_version.outputs.VERSION }}-${{ env.MACOS_TARGET }}.tar.gz |