Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm assuming this file wasn't meant to be part of this PR?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it's related to #109

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally this PR stays focused on just the needed changes and doesn't include code from #109

Copy link
Author

@infowprobo infowprobo Dec 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, that file shouldn't be here! It was from #109 and got included accidentally. I've removed it now in d63ba54

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
Loading