Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
h-sumiya committed Aug 24, 2024
1 parent dbd844e commit 3245e7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
tags:
- "v*"
workflow_dispatch:

permissions:
contents: write

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/windows_msix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- "v*"
workflow_dispatch:

permissions:
contents: write

jobs:
build:
name: Build and Release MSIX
Expand Down Expand Up @@ -36,7 +39,7 @@ jobs:
- name: Build MSIX
env:
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
run: echo y | flutter pub run msix:create --certificate-password "$env:KEY_PASSWORD"
run: echo y | flutter pub run msix:create --certificate-password "$env:KEY_PASSWORD" --output_path build/windows/runner/Release

- name: Upload MSIX
uses: actions/upload-artifact@v4
Expand All @@ -52,4 +55,4 @@ jobs:
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3245e7a

Please sign in to comment.