Skip to content

Release Please

Release Please #6

name: Release Please
run-name: Release Please
on:
push:
branches:
- main
jobs:
release-please:
if: github.repository == 'orefalo/${{ github.event.repository.name }}' # Prevent running on forks
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
cd .. && zip -r LLM_SuperSet.popclipz LLM_Superset.popclipext -x "*.git*" -x "*.vscode*"
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: LLM_SuperSet.popclipz
tag: ${{ github.ref }}
overwrite: true