This commit is contained in:
CJ Pais 2025-06-25 18:46:20 -07:00
parent dab5462a94
commit 0d10b5195e

View file

@ -1,13 +1,16 @@
name: "test-every-commit" name: "Release"
# on: workflow_dispatch
on: on:
push: workflow_dispatch
branches: # on:
- "test-build" # push:
# branches:
# - "test-build"
jobs: jobs:
test-tauri: publish-tauri:
permissions:
contents: write
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -88,7 +91,8 @@ jobs:
echo "Certificate imported." echo "Certificate imported."
# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets. # If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets.
- uses: tauri-apps/tauri-action@v0 - name: Build
uses: tauri-apps/tauri-action@v0
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_ID: ${{ secrets.APPLE_ID }}
@ -102,4 +106,7 @@ jobs:
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
with: with:
tagName: v__VERSION__
releaseName: "v__VERSION__"
args: ${{ matrix.args }} args: ${{ matrix.args }}
prerelease: true