WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Attach Plugin Zip to Release

on:
release:
types: [published]

permissions:
contents: write

jobs:
build:
name: Build Plugin Zip
uses: ./.github/workflows/build-plugin-zip.yaml
permissions:
contents: read

attach-to-release:
name: Attach to Release
needs: build
runs-on: ubuntu-24.04
permissions:
contents: write

steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ai

- name: Upload to release
uses: softprops/action-gh-release@v2
with:
files: ai.zip
Loading