publish #10
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: "publish" | |
on: workflow_dispatch | |
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. | |
jobs: | |
release-for-linux-arm64: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
target: aarch64-unknown-linux-gnu | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Rust Stable | |
uses: dtolnay/rust-toolchain@stable | |
- name: Add Rust Target | |
run: rustup target add ${{ matrix.target }} | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: src-tauri | |
cache-all-crates: true | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
version: 9 | |
- name: Pnpm install and check | |
run: | | |
pnpm i | |
- name: "Setup for linux" | |
run: |- | |
sudo ls -lR /etc/apt/ | |
echo "-------------" | |
cat > /tmp/sources.list << EOF | |
deb [arch=amd64,i386] http://archive.ubuntu.com/ubuntu jammy main multiverse universe restricted | |
deb [arch=amd64,i386] http://archive.ubuntu.com/ubuntu jammy-security main multiverse universe restricted | |
deb [arch=amd64,i386] http://archive.ubuntu.com/ubuntu jammy-updates main multiverse universe restricted | |
deb [arch=amd64,i386] http://archive.ubuntu.com/ubuntu jammy-backports main multiverse universe restricted | |
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports jammy main multiverse universe restricted | |
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports jammy-security main multiverse universe restricted | |
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports jammy-updates main multiverse universe restricted | |
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports jammy-backports main multiverse universe restricted | |
EOF | |
sudo mv /etc/apt/sources.list /etc/apt/sources.list.default | |
sudo mv /tmp/sources.list /etc/apt/sources.list | |
echo "-------------" | |
echo /etc/apt/sources.list && cat /etc/apt/sources.list | |
echo "-------------" | |
echo /etc/apt/apt-mirrors.txt && cat /etc/apt/apt-mirrors.txt | |
echo "-------------" | |
echo /etc/apt/sources.list.d/ports.list && cat /etc/apt/sources.list.d/ports.list || true | |
echo "-------------" | |
sudo dpkg --add-architecture arm64 | |
sudo apt update | |
sudo apt install -y \ | |
gcc-aarch64-linux-gnu \ | |
g++-aarch64-linux-gnu \ | |
libwebkit2gtk-4.1-dev:arm64 \ | |
libappindicator3-dev:arm64 \ | |
libssl-dev:arm64 \ | |
patchelf:arm64 \ | |
librsvg2-dev:arm64 | |
echo 'ok' | |
- name: Build for Linux | |
run: | | |
echo "build native binarys..." | |
export PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig/:$PKG_CONFIG_PATH | |
export PKG_CONFIG_SYSROOT_DIR=/usr/aarch64-linux-gnu/ | |
export PKG_CONFIG_ALLOW_CROSS=1 | |
pnpm build --target aarch64-unknown-linux-gnu | |
echo "build native binarys finished" | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} | |
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} | |
- name: Get Version | |
run: | | |
sudo apt-get update | |
sudo apt-get install jq | |
echo "VERSION=$(cat package.json | jq '.version' | tr -d '"')" >> $GITHUB_ENV | |
- name: Upload Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: v${{env.VERSION}} | |
name: "NVM Desktop v${{env.VERSION}}" | |
body: "More new features are now supported." | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: | | |
src-tauri/target/${{ matrix.target }}/release/bundle/deb/*.deb | |
src-tauri/target/${{ matrix.target }}/release/bundle/rpm/*.rpm |