Skip to content

Commit

Permalink
Create release
Browse files Browse the repository at this point in the history
  • Loading branch information
octogradiste committed Apr 12, 2024
1 parent 2ffbd51 commit ad2dec2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
name: Build
runs-on: ubuntu-latest

# Write permission to create a release
permissions:
contents: write

steps:
# First step : Checkout the repository on the runner
- name: Checkout
Expand Down Expand Up @@ -44,4 +48,10 @@ jobs:
with:
name: echo-app.apk
path: app/build/outputs/apk/debug/app-debug.apk
if-no-files-found: error
if-no-files-found: error

- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: app/build/outputs/apk/debug/app-debug.apk
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ad2dec2

Please sign in to comment.