Skip to content

Commit

Permalink
Fix release action fail
Browse files Browse the repository at this point in the history
  • Loading branch information
krypciak committed Sep 30, 2023
1 parent 23e596f commit 448d52f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
run: sudo apt update; sudo apt install npm

- name: Compile
run: npm install; npm run build
run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release pack
on:
push:
branches:
- main
- dev

jobs:
release:
Expand Down
1 change: 1 addition & 0 deletions pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ NAME="${BASE_NAME}-$(jq '.version' ccmod.json | sed 's/^"//;s/"$//').ccmod"
rm -rf "$BASE_NAME"*
echo not running in build mode
# npm run build
npm install
npm run start
zip -r "$NAME" ./ -x "*.ccmod" "*.zip" "node_modules/*" ".git*" "*.ts" "README.md" "tsconfig.json" "pack.sh" "package-lock.json"

0 comments on commit 448d52f

Please sign in to comment.