-
Notifications
You must be signed in to change notification settings - Fork 132
37 lines (34 loc) · 1.15 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Generated APK AAB (Upload - Create Artifact To Github Action)
env:
# The name of the main module repository
main_project_module: app
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- id: fetchLatestRelease
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: ${{ github.repository }}
excludes: prerelease, draft
token: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare Release Artifact
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'dsaltares/godot-wild-jam-18'
version: ${{ steps.keydb.fetchLatestRelease.release }}
file: '*.aab'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Android Release to Play Store
uses: r0adkll/upload-google-play@v1.1.3
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: me.rosuh.easywatermark
releaseFiles: '*.aab'
track: production
status: inProgress
mappingFile: app/build/outputs/mapping/release/mapping.txt