Skip to content

chore(deps): update bahmutov/npm-install action to v1.8.34 - autoclosed #298

chore(deps): update bahmutov/npm-install action to v1.8.34 - autoclosed

chore(deps): update bahmutov/npm-install action to v1.8.34 - autoclosed #298

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
node-version: '16'
- uses: bahmutov/[email protected]
- run: yarn build
- uses: actions/upload-artifact@v2
with:
name: build
path: build
github_pages:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: build
path: build
- uses: actions/[email protected]
with:
node-version: '16'
- run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${{github.repository}}.git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npx -y -p [email protected] gh-pages -d build -u "github-actions-bot <[email protected]>"