BarInsta/.github/workflows/github_pre_release.yml

71 lines
2.4 KiB
YAML
Raw Normal View History

name: Github pre-release
on: workflow_dispatch
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2021-05-09 14:42:59 +00:00
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
2021-05-09 14:42:59 +00:00
- name: Grant execute permission for gradlew
run: chmod +x gradlew
2021-05-09 14:42:59 +00:00
- name: Build Github unsigned pre-release apk
run: ./gradlew assembleGithubRelease --stacktrace --project-prop pre --project-prop split
2021-05-09 14:42:59 +00:00
- name: Sign APK
2021-05-09 15:01:26 +00:00
uses: ammargitham/sign-android-release@v1.1.1
# ID used to access action output
id: sign_app
with:
2021-03-26 12:28:50 +00:00
releaseDirectory: app/build/outputs/apk/github/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
2021-05-09 14:42:59 +00:00
2021-03-26 14:07:56 +00:00
- name: Get current date and time
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M%S')"
2021-05-09 14:42:59 +00:00
# Create artifact
- name: Create apk artifact
uses: actions/upload-artifact@v2
with:
name: barinsta_pre-release_${{ steps.date.outputs.date }}
2021-05-09 14:42:59 +00:00
# path: ${{steps.sign_app.outputs.signedReleaseFile}}
path: app/build/outputs/apk/github/release/*-signed.apk
2021-03-26 18:14:57 +00:00
# Send success notification
- name: Send success Telegram notification
if: ${{ success() }}
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_BUILDS_CHANNEL_TO }}
token: ${{ secrets.TELEGRAM_BUILDS_BOT_TOKEN }}
2021-03-26 18:14:57 +00:00
message: "${{ github.workflow }} ${{ github.job }} #${{ github.run_number }} completed successfully.\nURL: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
2021-05-09 14:42:59 +00:00
# document: ${{steps.sign_app.outputs.signedReleaseFile}}
document: app/build/outputs/apk/github/release/*-signed.apk
2021-03-26 18:14:57 +00:00
# Send failure notification
- name: Send failure Telegram notification
if: ${{ failure() }}
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_BUILDS_CHANNEL_TO }}
token: ${{ secrets.TELEGRAM_BUILDS_BOT_TOKEN }}
message: "${{ github.workflow }} ${{ github.job }} #${{ github.run_number }} failed.\nURL: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"