Update GitHub Actions (#278) #563
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: Alpha Artifacts | |
on: push | |
jobs: | |
test-tauri: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-latest | |
NAME: mac | |
- os: ubuntu-latest | |
NAME: linux | |
- os: windows-latest | |
NAME: windows | |
runs-on: ${{ matrix.os }} | |
env: | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Rust setup | |
uses: dtolnay/rust-toolchain@stable | |
- name: Rust cache | |
uses: swatinem/rust-cache@v2 | |
with: | |
workspaces: "./core -> target" | |
- name: "Apple silicon target" | |
if: matrix.NAME == 'mac' | |
run: | | |
rustup target add aarch64-apple-darwin | |
- name: Install webkit2gtk (ubuntu only) | |
if: matrix.NAME == 'linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf | |
- name: Install app dependencies and build it | |
if: matrix.NAME == 'linux' || matrix.NAME == 'windows' | |
run: npm ci && npm run build:alpha | |
- name: Install app dependencies and build it | |
if: matrix.NAME == 'mac' | |
run: npm ci && npm run build:alpha -- --target universal-apple-darwin | |
- name: Remove useless folders | |
run: | | |
rm -rf core/target/release/build | |
rm -rf core/target/release/deps | |
rm -rf core/target/release/bundle/appimage/authme.AppDir | |
npm run rename | |
shell: bash | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: authme-latest-alpha-${{matrix.NAME}}-x64-installer-portable | |
path: core/target/release |