Skip to content

Commit

Permalink
fix: seperate from build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Joris Mertz committed Jun 16, 2024
1 parent 22bf177 commit d45e522
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: bash ./build.sh
run: |
bash ./build.sh
cd ./scripts && npm install && cd ..
node ./scripts/generate-imports.js
- name: Update release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 0 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
npx prettier@latest --parser=less --write ./styles/**/*.css
npx prettier@latest --write ./**/*.md

cd ./scripts && npm install && cd ..
node ./scripts/generate-imports.js

0 comments on commit d45e522

Please sign in to comment.