Skip to content

Commit

Permalink
Update gulp-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmilinovic authored Nov 14, 2024
1 parent 911bdd6 commit 0f2c803
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/gulp-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
with:
node-version: '20'

- name: Ensure write permissions
run: chmod -R 777 ./dist

- name: Clean up dist folder
run: rm -rf ./dist && mkdir ./dist
run: rm -rf ./dist && mkdir -p ./dist

- name: Install dependencies
run: npm install
Expand All @@ -33,3 +36,9 @@ jobs:
with:
name: dist-folder
path: ./dist

- name: Download dist-folder artifact to dist
uses: actions/download-artifact@v3
with:
name: dist-folder
path: ./dist

0 comments on commit 0f2c803

Please sign in to comment.