Skip to content

Release

Release #14

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
- name: Run script to package files
run: |
chmod +x script/make-zip.sh
./script/make-zip.sh
- name: Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "package.zip"
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}