From c58d4dbc434adde6c11bdfc74bfaee1016b5b817 Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Wed, 3 Jul 2024 12:58:17 -0400 Subject: [PATCH] Release workflow --- .github/workflows/release_deploy.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/release_deploy.yaml diff --git a/.github/workflows/release_deploy.yaml b/.github/workflows/release_deploy.yaml new file mode 100644 index 0000000..0f27584 --- /dev/null +++ b/.github/workflows/release_deploy.yaml @@ -0,0 +1,27 @@ +on: + release: + types: [created] + +jobs: + release: + name: release ${{ matrix.target }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - target: x86_64-pc-windows-gnu + archive: zip + - target: x86_64-unknown-linux-musl + archive: tar.gz + - target: x86_64-apple-darwin + archive: zip + steps: + - uses: actions/checkout@master + - name: Compile and release + uses: rust-build/rust-build.action@v1.4.5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + RUSTTARGET: ${{ matrix.target }} + ARCHIVE_TYPES: ${{ matrix.archive }}