Skip to content

Commit

Permalink
Update node.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson authored Nov 3, 2021
1 parent 1fdd6d5 commit fce0c7c
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,28 @@ jobs:
SOURCEPATH=build
OUTPUTPATH=...
fi
octo pack --basePath ${SOURCEPATH} --outFolder ${OUTPUTPATH} --id RandomQuotes-JS --version ${{ steps.determine_version.outputs.semVer }} --format zip --overwrite --include **/*.html --include **/*.htm --include **/*.css --include **/*.js --include **/*.min --include **/*.map --include **/*.sql --include **/*.png --include **/*.jpg --include **/*.jpeg --include **/*.gif --include **/*.json --include **/*.env --include **/*.txt --include **/*.Procfile
octo pack \
--basePath ${SOURCEPATH} \
--outFolder ${OUTPUTPATH} \
--id RandomQuotes-JS \
--version ${{ steps.determine_version.outputs.semVer }} \
--format zip \
--overwrite \
--include **/*.html \
--include **/*.htm \
--include **/*.css \
--include **/*.js \
--include **/*.min \
--include **/*.map \
--include **/*.sql \
--include **/*.png \
--include **/*.jpg \
--include **/*.jpeg \
--include **/*.gif \
--include **/*.json \
--include **/*.env \
--include **/*.txt \
--include **/*.Procfile
shell: bash
- id: get_artifact
name: Get Artifact Path
Expand Down

0 comments on commit fce0c7c

Please sign in to comment.