Skip to content

build: support build from non-repo #24

build: support build from non-repo

build: support build from non-repo #24

Workflow file for this run

name: Release Binary
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create
uses: softprops/action-gh-release@v2
with:
draft: true
release-binary:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os: macos-latest
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: roxide
tar: unix
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}