mirror of
https://github.com/ayangweb/BongoCat.git
synced 2026-03-12 17:51:48 +08:00
21 lines
579 B
YAML
21 lines
579 B
YAML
name: Upload Release to UpgradeLink
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
upgradeLink-upload:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send a request to UpgradeLink
|
|
uses: toolsetlink/upgradelink-action@v5
|
|
with:
|
|
source-url: 'https://github.com/ayangweb/BongoCat/releases/latest/download/latest.json'
|
|
access-key: ${{ secrets.UPGRADE_LINK_ACCESS_KEY }}
|
|
tauri-key: ${{ secrets.UPGRADE_LINK_TAURI_KEY }}
|
|
github-token: ${{ secrets.RELEASE_TOKEN }}
|