refactor: skillset #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |