docs: add RELEASE #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Unsigned Binaries | |
on: | |
push: | |
release: | |
types: [released] | |
workflow_dispatch: | |
env: | |
UV_VERSION: '0.5.11' | |
concurrency: | |
group: ${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download uv | |
run: | | |
mkdir temp | |
mkdir -p ./assets/bin | |
curl -L https://github.com/astral-sh/uv/releases/download/${{ env.UV_VERSION }}/uv-x86_64-unknown-linux-gnu.tar.gz -o uv.tar.gz | |
tar -xzf uv.tar.gz -C ./temp | |
mv ./temp/uv-x86_64-unknown-linux-gnu/uv ./assets/bin/uv | |
rm -rf ./temp/uv-x86_64-unknown-linux-gnu | |
- name: setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- name: Install deps and build GUI | |
run: | | |
npm install --include=dev | |
npm run app:dist | |
- name: Publish artifact - GUI | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Invoke Community Edition.AppImage' | |
path: 'dist/Invoke Community Edition.AppImage' | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download uv | |
run: | | |
mkdir temp | |
mkdir -p ./assets/bin | |
curl -L https://github.com/astral-sh/uv/releases/download/${{ env.UV_VERSION }}/uv-aarch64-apple-darwin.tar.gz -o uv.tar.gz | |
tar -xzf uv.tar.gz -C ./temp | |
mv ./temp/uv-aarch64-apple-darwin/uv ./assets/bin/uv | |
rm -rf ./temp/uv-aarch64-apple-darwin | |
- name: setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- name: Install deps and build GUI | |
run: | | |
npm install --include=dev | |
npm run app:dist | |
- name: Publish artifact - GUI | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Invoke Community Edition.dmg' | |
path: 'dist/Invoke Community Edition.dmg' | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download uv | |
run: | | |
mkdir temp | |
mkdir -p ./assets/bin | |
curl -L https://github.com/astral-sh/uv/releases/download/${{ env.UV_VERSION }}/uv-x86_64-pc-windows-msvc.zip -o uv.zip | |
unzip uv.zip -d temp/ | |
mv temp/uv.exe assets/bin/uv.exe | |
- name: setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- name: Install deps and build GUI | |
run: | | |
npm install --include=dev | |
npm run app:dist | |
- name: Publish artifact - GUI - UNSIGNED | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'Invoke Community Edition.exe - UNSIGNED' | |
path: 'dist/Invoke Community Edition.exe' |