Skip to content

Commit 96d0209

Browse files
authored
Create main.yml
1 parent 138037f commit 96d0209

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Create Archive
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: windows
6+
steps:
7+
- uses: actions/checkout@master
8+
- name: Archive Release
9+
uses: thedoctor0/zip-release@0.7.5
10+
with:
11+
type: 'zip'
12+
filename: 'SpamBlock.zip'
13+
exclusions: '*.git* /*node_modules/* .editorconfig'
14+
- name: Upload Release
15+
uses: ncipollo/release-action@v1.12.0
16+
with:
17+
artifacts: "SpamBlock.zip"
18+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)