Skip to content

Commit

Permalink
chore: prepare for v0.1.1 release part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
z7workbench committed Jan 7, 2022
1 parent 08c1747 commit 5d08e20
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ jobs:
with:
name: android-release
path: build/app/outputs/flutter-apk/app-release.apk
- run: cp build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/minigames-android-release.apk
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/app/outputs/flutter-apk/minigames-android-release.apk
8 changes: 8 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,11 @@ jobs:
with:
name: linux-release
path: build/linux/x64/release
- uses: montudor/action-zip@v1
with:
args: zip -qq -r minigames-linux-release-x64.zip build/linux/x64/release
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: minigames-linux-release-x64.zip
8 changes: 8 additions & 0 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@ jobs:
with:
name: web-release
path: build/web
- uses: montudor/action-zip@v1
with:
args: zip -qq -r minigames-web-release.zip build/web
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: minigames-web-release.zip
8 changes: 8 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ jobs:
with:
name: windows-release
path: build/windows/runner/Release
- uses: montudor/action-zip@v1
with:
args: zip -qq -r minigames-windows-release-x64.zip build/windows/runner/Release
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: minigames-windows-release-x64.zip

0 comments on commit 5d08e20

Please sign in to comment.