From 49af8853ea1ea9ea95a8ce1f72203953be766c77 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Thu, 22 Jan 2026 00:07:30 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20.gitea/workflows/deploy-functions?= =?UTF-8?q?.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy-functions.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/deploy-functions.yaml diff --git a/.gitea/workflows/deploy-functions.yaml b/.gitea/workflows/deploy-functions.yaml new file mode 100644 index 0000000..f512f6e --- /dev/null +++ b/.gitea/workflows/deploy-functions.yaml @@ -0,0 +1,24 @@ +name: Deploy Function + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + + env: + SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }} + PROJECT_ID: exdkssurzmjnnhgtiama + + steps: + - uses: actions/checkout@v4 + + - uses: supabase/setup-cli@v1 + with: + version: latest + + - run: supabase functions deploy --project-ref $PROJECT_ID \ No newline at end of file