Skip to content

Commit

Permalink
ci: update template workflow for new struct
Browse files Browse the repository at this point in the history
  • Loading branch information
fabulousgk committed May 17, 2024
1 parent 808522f commit 1391152
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/update-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,16 @@ jobs:
path: ./template
- name: Copy files to template
run: |
rm -rf ./template/app
cp -rf ./source/app ./template/app
rm -rf ./template/components
rm -rf ./template/lib
rm -rf ./template/loaders
rm -rf ./template/types
cp -rf ./source/components ./template/components
cp -rf ./source/lib ./template/lib
cp -rf ./source/loaders ./template/loaders
cp -rf ./source/types ./template/types
cp -f ./source/index.ts ./template/index.ts
cp -f ./source/sparkbot.config.ts ./template/sparkbot.config.ts
cp -f ./source/package.json ./template/package.json
cp -f ./source/README.md ./template/README.md
cp -f ./source/LICENSE ./template/LICENSE
Expand Down

0 comments on commit 1391152

Please sign in to comment.