migrate docs to Openlineage/Openlineage repo #12
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
name: Build & Deploy spec to Netlify | |
on: | |
push: | |
branches: | |
- migrate-docs | |
#- main # spec is released whenever pushed to main | |
jobs: | |
generate_spec: | |
# if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./.github/workflows/release_spec.sh | |
#generate_openapi: TODO: to be done | |
netlify_deploy: | |
# if: github.event.pull_request.merged == true | |
name: 'Deploy to Netlify' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jsmrcaga/[email protected] | |
with: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN_SECRET }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_DEPLOY_TO_PROD: true | |
install_command: "cd website" | |
build_command: "yarn && yarn build" |