genoverse 4.0.4 → 4.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,8 +18,7 @@ jobs:
18
18
  with:
19
19
  node-version: ${{ matrix.node-version }}
20
20
  - run: yarn install
21
- - run: yarn build --env public-path=/Genoverse/dist/
22
- - name: Commit and push files
21
+ - name: Update gh-pages
23
22
  run: |
24
23
  echo $GITHUB_ACTOR
25
24
  git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
@@ -28,6 +27,13 @@ jobs:
28
27
  git checkout gh-pages
29
28
  git pull
30
29
  git reset --hard origin/master
30
+ rm -rf dist
31
+ - run: yarn build --env public-path=/Genoverse/dist/
32
+ - name: Commit and push files
33
+ run: |
34
+ echo $GITHUB_ACTOR
35
+ git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
36
+ git config --local user.name $GITHUB_ACTOR
31
37
  git add -f dist
32
38
  git commit -m "Added dist folder"
33
39
  git push --force origin gh-pages