Skip to content

Merge pull request #177 from gofiber/dependabot/npm_and_yarn/typescri… #110

Merge pull request #177 from gofiber/dependabot/npm_and_yarn/typescri…

Merge pull request #177 from gofiber/dependabot/npm_and_yarn/typescri… #110

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Build
run: |
yarn
yarn build
env:
NEXT_PUBLIC_INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
NEXT_PUBLIC_INKEEP_INTEGRATION_ID: ${{ secrets.INKEEP_INTEGRATION_ID }}
NEXT_PUBLIC_INKEEP_ORGANIZATION_ID: ${{ secrets.INKEEP_ORGANIZATION_ID }}
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: out
CLEAN: true