Skip to content

Commit b3a013e

Browse files
committed
update workflow for zipping to address lab500 starter kit
1 parent f0968c2 commit b3a013e

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/zip.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,18 @@ jobs:
8585
files: "*.zip"
8686
env:
8787
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
88+
89+
- uses: actions/checkout@v2
90+
with:
91+
fetch-depth: 0
92+
ref: lab500-enterprise-starter
93+
- run: npm install --force
94+
- name: Zip Folder
95+
run: zip -r ent-nx-sheriff-starter.zip . -x "*.zip"
96+
97+
- name: Release
98+
uses: softprops/action-gh-release@v1
99+
with:
100+
files: "*.zip"
101+
env:
102+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3+
/.nx
4+
35
# Compiled output
46
/dist
57
/tmp

0 commit comments

Comments
 (0)