Skip to content

CD

CD #4

Workflow file for this run

name: Deploy
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-upload:
name: Build and upload
runs-on: ubuntu-latest
strategy:
matrix:
# You can add more, for any target you'd like!
target:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
- x86_64-pc-windows-gnu
type:
- debug
- release
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get the release version from the tag
shell: bash
run: echo "VERSION=$\{GITHUB_REF#refs/tags/\}" >> $GITHUB_ENV
- name: Install Rust
# Or @nightly if you want
uses: dtolnay/rust-toolchain@stable
# Arguments to pass in
with:
# Make Rust compile to our target (defined in the matrix)
targets: ${{ matrix.target }}
- name: Build Release
uses: actions-rs/cargo@v1
if: matrix.type == 'release' # gotta be a better way?
with:
use-cross: true
command: build
args: --verbose --release --target ${{ matrix.target }}
- name: Build Debug
uses: actions-rs/cargo@v1
if: matrix.type == 'debug'
with:
use-cross: true
command: build
args: --verbose --target ${{ matrix.target }}
- name: Upload lib
uses: actions/[email protected]
with:
name: ${{ matrix.target }}
path: "target/${{ matrix.target }}/${{matrix.type}}/*sqore+(dylib|dll|so)"
# - name: Build archive
# shell: bash
# run: echo "Theoretically done constructing?"
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# files: |
# ./squiggles_core_release.zip