Skip to content

Act on release

Act on release #1

Workflow file for this run

name: Act on release
on:
workflow_call:
inputs:
release_tag:
type: string
description: 'The tag of the release'
required: true
workflow_dispatch:
inputs:
release_tag:
type: string
description: 'The tag of the release'
required: true
jobs:
push_notification:
name: Push Notification
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # The python version to use.
cache: 'pip'
cache-dependency-path: 'push-notify/requirements.txt'
- name: Install dependencies
run: pip install -r push-notify/requirements.txt
- name: Create google-auth json
run: echo "${{ secrets.GOOGLE_AUTH_JSON }}" > google-services.json
- name: Run push notification script
run: |
release_tag=${{ github.event.inputs.release_tag }}
release_body=$(gh release view $release_tag --json body -q .body)
python3 push-notify/push_notification.py --title "App update $release_tag" --body "$release_body" --api_url ${{ secrets.NOTIF_API_URL }} --bearer ${{ secrets.NOTIF_API_BEARER }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}