Skip to content

fix:dependabot.yml

fix:dependabot.yml #26

Workflow file for this run

name: Deploy static content to Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set-up Node
uses: actions/[email protected]
with:
node-version: "18.x"
- run: npm install
- run: npm run build
- name: Deploy
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}