Skip to content

DM NOTE v 1.6.0

DM NOTE v 1.6.0 #5

Workflow file for this run

name: Release and Update Website
on:
release:
types: [published]
jobs:
update-website:
runs-on: ubuntu-latest
steps:
- name: Trigger DmSite version update
run: |
curl -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.DMSITE_TRIGGER_TOKEN }}" \
https://api.github.com/repos/DmNote-App/DmSite/dispatches \
-d '{"event_type":"version-update"}'
echo "Triggered DmSite update for version: ${{ github.event.release.tag_name }}"