2022-05-28 04:41:47 +02:00
|
|
|
#
|
|
|
|
# REF:
|
|
|
|
# 1. https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrixinclude
|
|
|
|
#
|
2020-06-25 01:43:25 +02:00
|
|
|
name: Create Release Draft
|
|
|
|
|
|
|
|
on:
|
2021-11-15 21:04:00 +01:00
|
|
|
workflow_dispatch:
|
2020-06-25 01:43:25 +02:00
|
|
|
push:
|
2021-11-30 19:11:01 +01:00
|
|
|
tags: ["[0-9]+.[0-9]+.[0-9]+*"]
|
2020-06-25 01:43:25 +02:00
|
|
|
|
2022-05-28 04:41:47 +02:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2020-07-01 00:45:42 +02:00
|
|
|
|
2022-05-28 04:41:47 +02:00
|
|
|
jobs:
|
|
|
|
all:
|
|
|
|
name: All
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- aarch64-apple-darwin
|
|
|
|
- x86_64-apple-darwin
|
|
|
|
- x86_64-pc-windows-msvc
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
- x86_64-unknown-linux-musl
|
|
|
|
- aarch64-unknown-linux-gnu
|
|
|
|
- armv7-unknown-linux-gnueabihf
|
2022-12-14 11:09:39 +01:00
|
|
|
- riscv64gc-unknown-linux-gnu
|
2022-05-28 04:41:47 +02:00
|
|
|
extra: ['bin']
|
|
|
|
include:
|
|
|
|
- target: aarch64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
|
extra: 'bin'
|
|
|
|
os: windows-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
|
extra: msi
|
|
|
|
os: windows-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-unknown-linux-gnu
|
2022-12-01 03:44:21 +01:00
|
|
|
os: ubuntu-20.04
|
2022-05-28 04:41:47 +02:00
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-unknown-linux-musl
|
2022-12-01 03:44:21 +01:00
|
|
|
os: ubuntu-20.04
|
2022-05-28 04:41:47 +02:00
|
|
|
target_rustflags: ''
|
|
|
|
- target: aarch64-unknown-linux-gnu
|
2022-12-01 03:44:21 +01:00
|
|
|
os: ubuntu-20.04
|
2022-05-28 04:41:47 +02:00
|
|
|
target_rustflags: ''
|
|
|
|
- target: armv7-unknown-linux-gnueabihf
|
2022-12-01 03:44:21 +01:00
|
|
|
os: ubuntu-20.04
|
2022-05-28 04:41:47 +02:00
|
|
|
target_rustflags: ''
|
2022-12-14 11:09:39 +01:00
|
|
|
- target: riscv64gc-unknown-linux-gnu
|
|
|
|
os: ubuntu-20.04
|
|
|
|
target_rustflags: ''
|
2022-05-28 04:41:47 +02:00
|
|
|
|
|
|
|
runs-on: ${{matrix.os}}
|
2020-06-25 01:43:25 +02:00
|
|
|
|
|
|
|
steps:
|
2023-02-27 07:47:33 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-28 04:41:47 +02:00
|
|
|
|
2022-12-01 09:30:25 +01:00
|
|
|
- name: Update Rust Toolchain Target
|
|
|
|
run: |
|
|
|
|
echo "targets = ['${{matrix.target}}']" >> rust-toolchain.toml
|
2022-12-02 04:23:29 +01:00
|
|
|
|
|
|
|
- name: Setup Rust toolchain and cache
|
2023-03-20 18:28:45 +01:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.4.4
|
2022-12-01 09:30:25 +01:00
|
|
|
|
2022-05-28 04:41:47 +02:00
|
|
|
- name: Setup Nushell
|
2022-12-01 03:44:21 +01:00
|
|
|
uses: hustcer/setup-nu@v3
|
2022-05-28 04:41:47 +02:00
|
|
|
with:
|
2023-04-10 22:10:41 +02:00
|
|
|
version: 0.78.0
|
2022-05-28 04:41:47 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Release Nu Binary
|
|
|
|
id: nu
|
|
|
|
run: nu .github/workflows/release-pkg.nu
|
|
|
|
env:
|
|
|
|
OS: ${{ matrix.os }}
|
|
|
|
REF: ${{ github.ref }}
|
|
|
|
TARGET: ${{ matrix.target }}
|
|
|
|
_EXTRA_: ${{ matrix.extra }}
|
|
|
|
TARGET_RUSTFLAGS: ${{ matrix.target_rustflags }}
|
|
|
|
|
|
|
|
# REF: https://github.com/marketplace/actions/gh-release
|
|
|
|
- name: Publish Archive
|
2022-11-29 18:35:16 +01:00
|
|
|
uses: softprops/action-gh-release@v0.1.13
|
2022-05-28 04:41:47 +02:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
files: ${{ steps.nu.outputs.archive }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|