Skip to content

Deliver APK

Deliver APK #7

Workflow file for this run

name: Deliver APK
on:
workflow_dispatch:
workflow_run:
workflows: [Build APK]
types:
- completed
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: '8.0.x'
- name: Download latest artifact
run: gh run download -R dotnet-websharper/capacitor -n app-debug.apk
env:
GH_TOKEN: ${{ github.token }}
- name: Send notification
run: dotnet fsi ./notification-helper.fsx
env:
DISCORD_PACKAGE_FEED: ${{ secrets.DISCORD_PACKAGE_FEED }}
DISCORD_THREAD: ${{ secrets.DISCORD_THREAD }}
shell: bash