From 16b9e78ba9fb42c8c58b9f11b4a2670ef539c5c1 Mon Sep 17 00:00:00 2001 From: Carlos Ortiz Date: Thu, 5 Sep 2024 22:50:18 -0600 Subject: [PATCH] Update deploy-alpha workflow for tag-based triggers Removed the branch-based trigger to deploy only on tagged commits and cleaned up an unused environment variable. This ensures deployments to the alpha environment are streamlined and less error-prone. --- .github/workflows/deploy-alpha.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/deploy-alpha.yml b/.github/workflows/deploy-alpha.yml index 2844e9d..3a7f8ba 100644 --- a/.github/workflows/deploy-alpha.yml +++ b/.github/workflows/deploy-alpha.yml @@ -2,8 +2,6 @@ name: Test and Publish on: push: - branches: - - main tags: - '*-alpha' @@ -37,7 +35,6 @@ jobs: - name: Publish Plugin run: ./gradlew build test publishPlugin env: - PLUGIN_REPO: ${{ secrets.PLUGIN_REPO }} CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }} PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}