Remove Antrea and AWS add-ons from kurl.sh #275
Workflow file for this run
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: preview | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
deploy-staging-netlify: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: build | |
run: make deps build-staging | |
- name: release | |
uses: nwtgck/[email protected] | |
with: | |
publish-dir: public | |
production-branch: main | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Deploy preview staging.kurl.sh from GitHub Actions" | |
github-deployment-environment: preview | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: 9cc8b96a-2c23-4f71-bb0f-cbdc19ccbf76 | |
timeout-minutes: 5 |