Removed release, workflow for now as I want to fully automate it when merged with a release branch.
Rust Build / release ${{ matrix.target }} (tar.gz tar.xz tar.zst, x86_64-unknown-linux-musl) (push) Failing after 3m19s Details
Rust Build / release ${{ matrix.target }} (zip, x86_64-apple-darwin) (push) Failing after 2m26s Details
Rust Build / release ${{ matrix.target }} (zip, x86_64-pc-windows-gnu) (push) Failing after 2m41s Details

This commit is contained in:
Ian Wijma 2024-04-06 20:39:21 +11:00
parent 4305c9f0e8
commit 99f5eb22d6
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
name: Releasing
run-name: ${{ github.actor }} is building the files for a release 🚀
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 tar.xz tar.zst
- target: x86_64-apple-darwin
archive: zip
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}