Skip to content

feat: replaced fetch with axios #27

feat: replaced fetch with axios

feat: replaced fetch with axios #27

Workflow file for this run

# Trigger the workflow on push to main
name: Build and Deploy the Gatsby Application
on:
push:
branches: ["v1"]
jobs:
build-and-export:
name: Build, Export and Deploy
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Build and export to the `build` branch
uses: praneeth-rdy/static-build-export-action@main
env:
CI: false
PROJECT_DIR: .
BUILD_DIR: public
BUILD_BRANCH: build
TOKEN: ${{ secrets.TOKEN }}