Skip to content

Commit

Permalink
Fixing github action syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kerodekroma authored and Andrés Muñoz committed Jan 27, 2024
1 parent 4877672 commit 9344c90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ jobs:

- name: build
run: |
echo "Building project"
npm run build_prod && echo "DONE"
echo "=====> Installing dependencies"
npm install
echo "=====> Building project"
npm run build_prod
echo "=====> Let's ZIP it!"
zip -j -r phaser_dude_loader_demo.zip build
echo "=====> DONE!"
- name: Generate release tag
id: generate_release_tag
Expand Down

0 comments on commit 9344c90

Please sign in to comment.