Skip to content

Create Archive

Create Archive #5

Workflow file for this run

name: Create Archive
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: "zip"
path: "./vikinghug"
filename: "vikinghug.zip"
exclusions: "*.git* /*node_modules/* .editorconfig"
- name: Upload Release
uses: ncipollo/[email protected]
with:
artifacts: "vikinghug.zip"
token: ${{ secrets.GITHUB_TOKEN }}