Skip to content

Commit

Permalink
Fix build yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jlurena committed Nov 24, 2023
1 parent 72a290d commit e05ed85
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,15 @@ jobs:
cache: 'npm'
- name: Install NPM Dependencies
run: npm install --omit=dev
- name: debug
run: ls src
- name: Build
run: npm run build
- name: Configure directory
- name: Configure server path
run: >
mkdir to_rm &&
mv * to_rm/ &&
mv to_rm/build ./public &&
rm -rf to_rm
mkdir /tmp/source_rm &&
mv * /tmp/source_rm &&
mv /tmp/source_rm/build public &&
rm -r /tmp/source_rm &&
ls
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit e05ed85

Please sign in to comment.