Skip to content

Commit

Permalink
Test Release
Browse files Browse the repository at this point in the history
  • Loading branch information
QiubyZ committed Dec 21, 2023
1 parent f08e2f1 commit 93b7f19
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
17 changes: 16 additions & 1 deletion .androidide/editor/openedFiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,22 @@
"line": 3
}
}
},
{
"file": "/storage/emulated/0/AndroidIDEProjects/4L4y-T3xt/.github/workflows/main.yml",
"selection": {
"end": {
"column": 8,
"index": 923,
"line": 43
},
"start": {
"column": 8,
"index": 923,
"line": 43
}
}
}
],
"selectedFile": "/storage/emulated/0/AndroidIDEProjects/4L4y-T3xt/build.gradle"
"selectedFile": "/storage/emulated/0/AndroidIDEProjects/4L4y-T3xt/.github/workflows/main.yml"
}
18 changes: 15 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ on:
branches: ["main"]
pull_request:
branches: [ "main" ]


env:
filebuild: ./app/build/outputs/apk/debug/app-debug.apk

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -32,7 +35,16 @@ jobs:
uses: actions/[email protected]
with:
name: 4LayT3xt
path: ./app/build/outputs/apk/debug/app-debug.apk
path: $filebuild


- name: Upload Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

with:
release_name: ${{github.ref}}
file: $filebuild
tags: true
draft: true

0 comments on commit 93b7f19

Please sign in to comment.