From 95f28c4cc625d127e6e08f702d16f58164d0370d Mon Sep 17 00:00:00 2001 From: Ra Date: Mon, 25 Aug 2025 15:25:04 -0700 Subject: [PATCH] add github action to deploy on push --- .github/workflows/deploy-vercel.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/deploy-vercel.yml diff --git a/.github/workflows/deploy-vercel.yml b/.github/workflows/deploy-vercel.yml new file mode 100644 index 0000000..b355225 --- /dev/null +++ b/.github/workflows/deploy-vercel.yml @@ -0,0 +1,25 @@ +name: deploy + +on: + push: + branches: + - main + workflow_call: {} + workflow_dispatch: + inputs: + environment: + description: "Environment to run tests against" + type: environment + required: true + +run-name: deploy-${{ github.ref_name }}-${{ github.run_number }} + +permissions: + contents: read + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Trigger Vercel Deployment + run: curl -X POST https://api.vercel.com/v1/integrations/deploy/ \ No newline at end of file