From be4003bbd787a74dc23ec56935cc7ecdd2a4be61 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Fri, 6 Dec 2024 20:35:11 +0100 Subject: [PATCH] update deploy job for dev env --- .github/workflows/deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 48071777b..18b47cf9f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,15 +3,16 @@ on: branches: ['lendemor/use_deploy_action'] jobs: - deploy: + deploy-dev: runs-on: ubuntu-latest + environment: DeployDev steps: - name: Checkout uses: actions/checkout@v4 - name: Deploy - uses: reflex-dev/reflex-deploy-action@v0 + uses: reflex-dev/reflex-deploy-action@v1 with: auth_token: ${{ secrets.REFLEX_AUTH_TOKEN }} project_id: ${{ secrets.PROJECT_ID }} extra_args: "--vm-type=${{ vars.VM_TYPE }}" - python_version: 3.12 \ No newline at end of file + dry_run: ${{ vars.DRY_RUN }} \ No newline at end of file