Skip to content

Update Version

Update Version #2

Workflow file for this run

name: Create release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: "zip"
filename: "${{ github.event.repository.name }}.zip"
exclusions: "*.git* /*node_modules/* .editorconfig"
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ github.event.repository.name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}