mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +00:00
ci(build): fix if statement
This commit is contained in:
parent
301fa48956
commit
ee5821da33
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -24,9 +24,9 @@ jobs:
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
# Create recursivelly the destiantion dir with
|
# Create recursivelly the destiantion dir with
|
||||||
# "--parrents where no error if existing, make parent directories as needed."
|
# "--parrents where no error if existing, make parent directories as needed."
|
||||||
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
||||||
- run: mkdir -p ./build/${{ github.ref_name }}
|
- run: mkdir -p ./build/${{ github.ref_name }}
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v4
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue