Skip to content

#2778 cleanup and add missing semicolons #27

#2778 cleanup and add missing semicolons

#2778 cleanup and add missing semicolons #27

Workflow file for this run

name: Create Archive
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
filename: 'release.zip'
exclusions: '*.git*'
- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "release.zip"
token: ${{ secrets.GITHUB_TOKEN }}
tag: 'latest'
allowUpdates: true