Skip to content

Commit 47ce61b

Browse files
author
sam bacha
authored
GitHub Action - Generate ZIP Archive (#5)
* Update .gitattributes * Create compendium.yml
1 parent ad86335 commit 47ce61b

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@
1818
.gitattributes text
1919
KEY text
2020
LICENSE* text
21+
22+
*.docx diff=word
23+
*.pdf filter=lfs diff=lfs merge=lfs -text

.github/workflows/compendium.yml

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
name: codex
2-
on:
3-
push:
4-
pull_request:
1+
name: compendium
2+
on: [push]
53
jobs:
6-
create compendium:
4+
build:
75
runs-on: ubuntu-latest
86
steps:
9-
- uses: montudor/[email protected]
10-
with:
11-
args: zip -qq -r compendium-pdf.zip *.pdf
12-
- uses: actions/upload-artifact@v2
13-
with:
14-
name: compendium-pdf.zip
7+
- uses: actions/checkout@master
8+
- name: Archive Release
9+
uses: thedoctor0/zip-release@master
10+
with:
11+
filename: 'release.zip'
12+
exclusions: '*.git* /*node_modules/* .editorconfig'

0 commit comments

Comments
 (0)