2022-01-03 18:18:32 +01:00
|
|
|
name: Release
|
2022-01-03 20:03:37 +01:00
|
|
|
on:
|
2022-01-03 18:18:32 +01:00
|
|
|
push:
|
2022-01-03 20:03:37 +01:00
|
|
|
tags:
|
|
|
|
- "*"
|
2022-01-03 18:18:32 +01:00
|
|
|
jobs:
|
|
|
|
create_release:
|
|
|
|
name: Create GitHub Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-03 14:34:42 +02:00
|
|
|
- uses: actions/checkout@v3.5.2
|
2022-01-03 18:18:32 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
2022-11-06 00:19:30 +01:00
|
|
|
- name: Create ZIP archive
|
|
|
|
run: './scripts/release.sh'
|
|
|
|
shell: bash
|
|
|
|
|
2022-01-03 18:18:32 +01:00
|
|
|
- uses: marvinpinto/action-automatic-releases@latest
|
|
|
|
with:
|
|
|
|
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
|
|
|
prerelease: false
|
|
|
|
files: |
|
|
|
|
release.zip
|