Skip to content

Commit

Permalink
added artifact upload to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hrideshmg authored Apr 12, 2024
1 parent 2a931a5 commit 8581f32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ jobs:
java-version: '11'
- name: Build apk
run: flutter build apk
- name: Release
- uses: actions/upload-artifact@v1
with:
name: release-apk-artifact
path: build/app/outputs/apk/release/app-release.apk
- name: Release apk
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/app/outputs/apk/release/app-release.apk

Expand Down

0 comments on commit 8581f32

Please sign in to comment.