This commit is contained in:
proelements
2025-11-13 15:18:34 +02:00
commit 9ac2bf2aa0
1178 changed files with 296944 additions and 0 deletions

22
.github/workflows/release.yaml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Publish
on:
push:
tags:
- '*'
jobs:
build:
name: Publish plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
shell: bash
run: git archive --format=zip --prefix="pro-elements/" HEAD > pro-elements.zip
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: pro-elements.zip
tag: ${{ github.ref }}
overwrite: true
body: "Release"