use CHECKLY_GITHUB_TOKEN in GithubTools as well #58
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: Deployment | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Deploy-Vercel: | |
if: false | |
#Temporarily disabled | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Pull Vercel Environment Information | |
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build Project Artifacts | |
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Deploy Project Artifacts to Vercel | |
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} | |
Deploy-Render: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Render CLI | |
run: | | |
curl -L https://github.com/render-oss/cli/releases/download/v0.8.6/cli_0.8.6_linux_amd64.zip -o render.zip | |
unzip render.zip | |
sudo mv cli_v0.8.6 /usr/local/bin/render | |
- name: Authenticate with Render& Deploy | |
env: | |
RENDER_API_KEY: ${{ secrets.RENDER_API_KEY }} | |
CI: true | |
run: | | |
render login --output json | |
render deploys create ${{ secrets.RENDER_SERVICE_ID }} --output json --confirm |