Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/buildFront.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: gh-pages

- run: git checkout -b gh-pages-pr || true
- run: git push --set-upstream origin gh-pages-pr || true

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: gh-pages-pr
Expand All @@ -39,13 +39,13 @@ jobs:
- run: git commit -m "Merge branch gh-pages into gh-pages-pr" 1> /dev/null 2> /dev/null || true
- run: git push

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: master

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
Loading