switch to current JDK LTS versions #71
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 workflow | |
on: | |
release: | |
types: [published] | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: release-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-release: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
include: | |
- operating-system: ubuntu-20.04 | |
targets: x86_64-unknown-linux-gnu,x86_64-unknown-linux-musl,aarch64-unknown-linux-gnu,aarch64-unknown-linux-musl | |
- operating-system: windows-2019 | |
targets: aarch64-pc-windows-msvc,x86_64-pc-windows-msvc | |
- operating-system: macos-12 | |
targets: aarch64-apple-darwin,x86_64-apple-darwin | |
fail-fast: false | |
env: | |
pact_do_not_track: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: ${{ matrix.targets }} | |
- name: Rust caching | |
uses: Swatinem/rust-cache@v2 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
if: runner.os == 'Linux' | |
uses: docker/setup-buildx-action@v3 | |
- name: Install LLVM | |
run: choco install -y llvm | |
if: runner.os == 'Windows' | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cargo flags | |
id: cargo-flags | |
shell: bash | |
run: | | |
if [[ "${{ github.event_name }}" = "release" ]]; then | |
echo "flags=--release" >> "$GITHUB_OUTPUT" | |
else | |
echo "flags=" >> "$GITHUB_OUTPUT" | |
fi | |
- if: | | |
github.event_name == 'push' || | |
github.event_name == 'pull_request' || | |
startsWith(github.ref, 'refs/tags/csv-plugin') | |
run: ./release.sh ${{ runner.os }} ${{ steps.cargo-flags.outputs.flags }} | |
shell: bash | |
working-directory: plugins/csv | |
- if: | | |
github.event_name == 'push' || | |
github.event_name == 'pull_request' || | |
startsWith(github.ref, 'refs/tags/pact-plugin-cli') | |
run: ./release.sh ${{ runner.os }} ${{ steps.cargo-flags.outputs.flags }} | |
shell: bash | |
working-directory: cli | |
- name: Upload Release Assets | |
if: | | |
startsWith(github.ref, 'refs/tags/pact-plugin-cli') || | |
startsWith(github.ref, 'refs/tags/csv-plugin') | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: release_artifacts/* | |
file_glob: true | |
tag: ${{ github.ref }} |