From 6d0119287aacfb5da7be30746e608c3cfb21fc9f Mon Sep 17 00:00:00 2001 From: CedricHermansBIT <77454330+CedricHermansBIT@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:43:46 +0100 Subject: [PATCH] Create main.yml first test of rust release workflow --- .github/workflows/main.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..2070cf4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,31 @@ +on: + release: + types: [created] + push: + + +jobs: + release: + name: release ${{ matrix.target }} (with non-required env) + runs-on: ubuntu-latest + if: github.event_name == 'release' + 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@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + RUSTTARGET: ${{ matrix.target }} + ARCHIVE_TYPES: ${{ matrix.archive }} + MINIFY: "yes"