Skip to content

Commit

Permalink
Create notify-on-push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
K0IN committed Jun 23, 2024
1 parent 9a636e9 commit 2fb0686
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/notify-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: push build to deploy branch

on:
push:

jobs:
send-version-notification:
runs-on: ubuntu-latest
steps:
- uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x

- name: Notify demo
run: |
deno run --allow-net --unstable --import-map https://raw.githubusercontent.com/K0IN/Notify/main/app/backend/deno.json https://raw.githubusercontent.com/K0IN/Notify/main/app/backend/main.ts notify -r https://notify-demo.deno.dev/api/notify -t "New notify version" -m "New Version Released ${major}.${minor}"

0 comments on commit 2fb0686

Please sign in to comment.