This commit is contained in:
2024-10-10 19:56:18 +02:00
parent 1a089aeaee
commit 81300ff311
2 changed files with 19 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
name: Create Archive
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@0.7.5
with:
type: 'zip'
filename: 'release.zip'
exclusions: '*.git* /*node_modules/* .editorconfig'

View File

@@ -0,0 +1,19 @@
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: release
id: release
uses: actions/release-action@main
with:
files: |-
**
api_key: '${{secrets.RELEASE_TOKEN}}'