Skip to content

Project update to v2 #847

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix ubuntu label
  • Loading branch information
javiert-okta committed Jun 12, 2025
commit 5889fc0a5bea05fe242d5146bdbd58e24dbb1f8c
21 changes: 21 additions & 0 deletions .github/workflows/preview-community.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Vercel Preview Community Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.PREVIEW_VERCEL_PROJECT_ID }}
on:
push:
branches:
- production
jobs:
Deploy-Production:
runs-on:
labels: ubuntu-latest
steps:
- name: Checkout the Codebase
uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Deploy on Vercel
id: deploy
run: |
vercel deploy --prod --token=${{ secrets.VERCEL_ACCESS_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
Deploy-Preview:
runs-on:
labels: ubuntu-22.04-2cpu-8ram-75ssd
labels: ubuntu-latest
environment: preview
outputs:
deploymentUrl: ${{ steps.deploy.outputs.deploymentUrl }}
Expand All @@ -36,7 +36,7 @@ jobs:

Add-Comment:
runs-on:
labels: ubuntu-22.04-2cpu-8ram-75ssd
labels: ubuntu-latest
needs: Deploy-Preview
permissions:
issues: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
Deploy-Production:
runs-on:
labels: ubuntu-22.04-2cpu-8ram-75ssd
labels: ubuntu-latest
steps:
- name: Checkout the Codebase
uses: actions/checkout@v4
Expand Down
Loading