This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
Merge remote-tracking branch 'origin/master' into release-wails #8
Workflow file for this run
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: Release | ||
on: | ||
push: | ||
workflow_dispatch: | ||
jobs: | ||
build-raspberry-pi: | ||
uses: ./.github/workflows/package-raspberry-pi.yml | ||
build-wails: | ||
uses: ./.github/workflows/wails2.yaml | ||
Check failure on line 13 in .github/workflows/release.yaml GitHub Actions / .github/workflows/release.yamlInvalid workflow file
|
||
secrets: | ||
APPLE_DEVELOPER_CERTIFICATE_P12_BASE64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }} | ||
APPLE_DEVELOPER_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} | ||
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} | ||
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | ||
APPLE_USERNAME: ${{ secrets.APPLE_USERNAME }} | ||
release-draft: | ||
needs: | ||
- build-raspberry-pi | ||
- build-wails | ||
uses: ./.github/workflows/publish-release.yaml | ||
secrets: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |