mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.git
synced 2025-11-19 21:02:53 +08:00
21 lines
400 B
YAML
21 lines
400 B
YAML
name: PublishDistribution
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
Publish:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Purge Patch System Cache
|
|
- name: Purge Patch
|
|
env:
|
|
PURGE_URL: ${{ secrets.PURGE_URL }}
|
|
run: |
|
|
curl -X PATCH $PURGE_URL
|