Skip to content

Commit

Permalink
setting up CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Zhdanov committed Dec 24, 2024
1 parent 9538b1c commit 7e1d360
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ jobs:
- name: test
run: flutter test

- name: restore gradle cache
uses: actions/cache/restore@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

- name: release paperwork
run: |
./gradlew release-paperwork
Expand All @@ -54,6 +62,14 @@ jobs:
- name: build app bundle
run: flutter build appbundle

- name: save gradle cache
uses: actions/cache/save@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

- name: upload apk
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7e1d360

Please sign in to comment.