Skip to content

Commit

Permalink
Update Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed Nov 20, 2024
1 parent 7e529d3 commit 7cfd959
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: build

on:
push:
branches: '*'
branches:
- '*'
pull_request:
types: [opened, synchronize]

Expand All @@ -11,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout the project
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand All @@ -21,7 +22,7 @@ jobs:
- name: Build the project
run: ./gradlew assembleDebug
- name: Upload APKs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
retention-days: 60
name: apk
Expand Down Expand Up @@ -51,7 +52,7 @@ jobs:
git push -f origin latest_build
- name: Download project artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: apk
- name: Stage upload directory
Expand Down

0 comments on commit 7cfd959

Please sign in to comment.