From d60494f42a6adbee81c25d98bb317561e0b23688 Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Sat, 2 May 2026 11:35:45 +1000 Subject: [PATCH] Updated the release --- .forgejo/workflows/release.yml | 25 +++++++++++-------------- wails.json | 4 ++-- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 49e782c..2615e0a 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -8,9 +8,6 @@ on: jobs: build: runs-on: macos - env: - NETLIFY_SITE_ID: 05a59e52-9a87-44db-ae19-53727b9062c9 - NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} steps: - name: Checkout uses: actions/checkout@v2 @@ -28,15 +25,15 @@ jobs: run: | npm install wails build -clean -platform darwin/arm64 -ldflags "-X main.VersionNumber=`git describe --tags --abbrev=0`" - - name: Bundle - run: | - cd build/bin/ - zip -r dequoter-darwin-arm64.zip Dequoter.app - - name: Upload build artifacts - uses: actions/upload-artifact@v3 + - uses: https://lmika.dev/actions/wails-release@v1.0 with: - name: dequoter-darwin-arm64 - path: build/bin/dequoter-darwin-arm64.zip - - name: Build Site - run: | - go run ./cmd/site \ No newline at end of file + developer-id-cert-base64: ${{ secrets.MACOS_SIGN_P12 }} + developer-id-cert-password: ${{ secrets.MACOS_SIGN_PASSWORD }} + notarization-api-key-base64: ${{ secrets.MACOS_NOTARY_KEY }} + notarization-api-key-id: ${{ secrets.MACOS_NOTARY_KEY_ID }} + notarization-api-issuer-id: ${{ secrets.MACOS_NOTARY_ISSUER_ID }} + s3-bucket: lmika-public-files + s3-key: Apps/Dequoter/{version}/{filename} + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_PUBLISH_ACCESS_KEY }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_PUBLISH_SECRET_KEY }} \ No newline at end of file diff --git a/wails.json b/wails.json index 79abba9..5ed82da 100644 --- a/wails.json +++ b/wails.json @@ -1,7 +1,7 @@ { "$schema": "https://wails.io/schemas/config.v2.json", - "name": "dequoter", - "outputfilename": "dequoter", + "name": "Dequoter", + "outputfilename": "Dequoter", "frontend:install": "npm install", "frontend:build": "npm run build", "frontend:dev:watcher": "npm run dev",