This commit is contained in:
parent
3b1a287864
commit
e39ba987c4
2 changed files with 34 additions and 0 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -215,3 +215,14 @@ jobs:
|
||||||
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
VERSION_NAME: ${{ env.VERSION_NAME }}
|
VERSION_NAME: ${{ env.VERSION_NAME }}
|
||||||
VERSION_CODE: ${{ env.VERSION_CODE }}
|
VERSION_CODE: ${{ env.VERSION_CODE }}
|
||||||
|
|
||||||
|
- name: Notify
|
||||||
|
uses: https://github.com/appleboy/telegram-action@master
|
||||||
|
with:
|
||||||
|
to: ${{ secrets.TELEGRAM_ID }}
|
||||||
|
token: ${{ secrets.TELEGRAM_BOT }}
|
||||||
|
message: |
|
||||||
|
${{ github.actor }}:
|
||||||
|
Commit message: ${{ github.event.commits[0].message }}
|
||||||
|
AlaskarTV Built Successfully
|
||||||
|
See changes: https://git.askar.tv/nomad/alaskartv-app/releases/tag/v${VERSION_NAME}
|
||||||
|
|
23
.github/workflows/playground.yml
vendored
Normal file
23
.github/workflows/playground.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: Testing Area
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
AlaskarTV:
|
||||||
|
runs-on: docker
|
||||||
|
container: ghcr.io/catthehacker/ubuntu:full-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Notify
|
||||||
|
uses: https://github.com/appleboy/telegram-action@master
|
||||||
|
with:
|
||||||
|
to: ${{ secrets.TELEGRAM_ID }}
|
||||||
|
token: ${{ secrets.TELEGRAM_BOT }}
|
||||||
|
message: |
|
||||||
|
${{ github.actor }}:
|
||||||
|
Commit message: ${{ github.event.commits[0].message }}
|
||||||
|
AlaskarTV Built Successfully
|
||||||
|
See changes: https://git.askar.tv/nomad/alaskartv-app/releases/tag/v0.3.0
|
Loading…
Reference in a new issue