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:
|
2024-10-11 05:16:22 +02:00
|
|
|
release:
|
2024-09-24 17:13:05 +02:00
|
|
|
name: Nu
|
2022-05-28 04:41:47 +02:00
|
|
|
|
|
|
|
strategy:
|
2024-04-06 04:20:01 +02:00
|
|
|
fail-fast: false
|
2022-05-28 04:41:47 +02:00
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- aarch64-apple-darwin
|
|
|
|
- x86_64-apple-darwin
|
|
|
|
- x86_64-pc-windows-msvc
|
2023-05-20 14:50:38 +02:00
|
|
|
- aarch64-pc-windows-msvc
|
2022-05-28 04:41:47 +02:00
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
- x86_64-unknown-linux-musl
|
|
|
|
- aarch64-unknown-linux-gnu
|
2024-09-09 03:47:59 +02:00
|
|
|
- aarch64-unknown-linux-musl
|
2023-06-28 03:15:32 +02:00
|
|
|
- armv7-unknown-linux-gnueabihf
|
2024-09-09 03:47:59 +02:00
|
|
|
- armv7-unknown-linux-musleabihf
|
2024-02-15 14:05:50 +01:00
|
|
|
- riscv64gc-unknown-linux-gnu
|
2024-09-22 11:20:15 +02:00
|
|
|
- loongarch64-unknown-linux-gnu
|
2022-05-28 04:41:47 +02:00
|
|
|
extra: ['bin']
|
|
|
|
include:
|
|
|
|
- target: aarch64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
- target: x86_64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
|
extra: 'bin'
|
|
|
|
os: windows-latest
|
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
|
extra: msi
|
|
|
|
os: windows-latest
|
2023-05-20 14:50:38 +02:00
|
|
|
- target: aarch64-pc-windows-msvc
|
|
|
|
extra: 'bin'
|
|
|
|
os: windows-latest
|
|
|
|
- target: aarch64-pc-windows-msvc
|
|
|
|
extra: msi
|
|
|
|
os: windows-latest
|
2022-05-28 04:41:47 +02:00
|
|
|
- target: x86_64-unknown-linux-gnu
|
2024-07-08 00:15:03 +02:00
|
|
|
os: ubuntu-22.04
|
2022-05-28 04:41:47 +02:00
|
|
|
- target: x86_64-unknown-linux-musl
|
2024-07-08 00:15:03 +02:00
|
|
|
os: ubuntu-22.04
|
2022-05-28 04:41:47 +02:00
|
|
|
- target: aarch64-unknown-linux-gnu
|
2024-07-08 00:15:03 +02:00
|
|
|
os: ubuntu-22.04
|
2024-09-09 03:47:59 +02:00
|
|
|
- target: aarch64-unknown-linux-musl
|
|
|
|
os: ubuntu-22.04
|
2023-06-28 03:15:32 +02:00
|
|
|
- target: armv7-unknown-linux-gnueabihf
|
2024-07-08 00:15:03 +02:00
|
|
|
os: ubuntu-22.04
|
2024-09-09 03:47:59 +02:00
|
|
|
- target: armv7-unknown-linux-musleabihf
|
|
|
|
os: ubuntu-22.04
|
2024-02-15 14:05:50 +01:00
|
|
|
- target: riscv64gc-unknown-linux-gnu
|
|
|
|
os: ubuntu-latest
|
2024-09-22 11:20:15 +02:00
|
|
|
- target: loongarch64-unknown-linux-gnu
|
|
|
|
os: ubuntu-22.04
|
2022-05-28 04:41:47 +02:00
|
|
|
|
|
|
|
runs-on: ${{matrix.os}}
|
2020-06-25 01:43:25 +02:00
|
|
|
|
|
|
|
steps:
|
2024-09-24 17:13:05 +02:00
|
|
|
- uses: actions/checkout@v4
|
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
|
|
|
|
2024-04-06 04:20:01 +02:00
|
|
|
- name: Setup Rust toolchain
|
2024-10-02 02:32:07 +02:00
|
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
2024-05-20 19:22:08 +02:00
|
|
|
# WARN: Keep the rustflags to prevent from the winget submission error: `CAQuietExec: Error 0xc0000135`
|
2023-10-18 20:00:19 +02:00
|
|
|
with:
|
2024-04-06 04:20:01 +02:00
|
|
|
cache: false
|
2023-10-18 20:00:19 +02:00
|
|
|
rustflags: ''
|
2023-09-23 03:41:08 +02:00
|
|
|
|
|
|
|
- name: Setup Nushell
|
2024-09-24 17:13:05 +02:00
|
|
|
uses: hustcer/setup-nu@v3
|
2023-09-23 03:41:08 +02:00
|
|
|
with:
|
2024-09-24 17:13:05 +02:00
|
|
|
version: 0.98.0
|
2023-09-23 03:41:08 +02:00
|
|
|
|
|
|
|
- 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 }}
|
2022-05-28 04:41:47 +02:00
|
|
|
|
|
|
|
# REF: https://github.com/marketplace/actions/gh-release
|
|
|
|
- name: Publish Archive
|
2024-11-06 03:30:55 +01:00
|
|
|
uses: softprops/action-gh-release@v2.0.9
|
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 }}
|
2024-10-11 05:16:22 +02:00
|
|
|
|
|
|
|
sha256sum:
|
|
|
|
needs: release
|
|
|
|
name: Create Sha256sum
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Download Release Archives
|
|
|
|
env:
|
|
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: >-
|
|
|
|
gh release download ${{ github.ref_name }}
|
|
|
|
--repo ${{ github.repository }}
|
|
|
|
--pattern '*'
|
|
|
|
--dir release
|
|
|
|
- name: Create Checksums
|
|
|
|
run: cd release && shasum -a 256 * > ../SHA256SUMS
|
|
|
|
- name: Publish Checksums
|
2024-11-06 03:30:55 +01:00
|
|
|
uses: softprops/action-gh-release@v2.0.9
|
2024-10-11 05:16:22 +02:00
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
files: SHA256SUMS
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|