Add default os-version for CLI #12
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 GPGUI | |
on: | |
push: | |
paths-ignore: | |
- LICENSE | |
- "*.md" | |
- .vscode | |
- .devcontainer | |
branches: | |
- main | |
# tags: | |
# - v*.*.* | |
jobs: | |
# Include arm64 if ref is a tag | |
setup-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Set up matrix | |
id: set-matrix | |
run: | | |
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then | |
echo "matrix=[\"amd64\", \"arm64\"]" >> $GITHUB_OUTPUT | |
else | |
echo "matrix=[\"amd64\"]" >> $GITHUB_OUTPUT | |
fi | |
build-fe: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gpgui repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
repository: yuezk/gpgui | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: | | |
cd app | |
pnpm install | |
- name: Build | |
run: | | |
cd app | |
pnpm run build | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gpgui-fe | |
path: app/dist | |
build-tauri: | |
needs: [setup-matrix, build-fe] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | |
steps: | |
- name: Checkout gpgui repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
repository: yuezk/gpgui | |
path: gpgui | |
- name: Checkout gp repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
repository: yuezk/GlobalProtect-openconnect | |
path: gp | |
- name: Download gpgui-fe artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: gpgui-fe | |
path: gpgui/app/dist | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: ${{ matrix.arch }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Build Tauri in Docker | |
run: | | |
docker run \ | |
--rm \ | |
-v $(pwd):/${{ github.workspace }} \ | |
-w ${{ github.workspace }} \ | |
-e CI=true \ | |
--platform linux/${{ matrix.arch }} \ | |
yuezk/gpdev:main \ | |
"./gpgui/scripts/build.sh" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifact-${{ matrix.arch }}-tauri | |
path: | | |
gpgui/.tmp/artifact |