From 90dbbc1239516031891a7fa0190b7db407d7333e Mon Sep 17 00:00:00 2001 From: lars Date: Wed, 4 Oct 2023 15:35:58 -0500 Subject: [PATCH] Try multiline run block --- .gitea/workflows/DeployPR.yaml | 3 ++- .gitea/workflows/UndeployPR.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/DeployPR.yaml b/.gitea/workflows/DeployPR.yaml index 0051002..e364409 100644 --- a/.gitea/workflows/DeployPR.yaml +++ b/.gitea/workflows/DeployPR.yaml @@ -13,7 +13,8 @@ jobs: - name: Install pip packages run: pip3 install requests python-dotenv --quiet - name: Run Deploy script - run: python3 deploy/portainer/deploy.py + run: > + python3 deploy/portainer/deploy.py --PORTAINER https://dvportainer.privatedns.org --PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q= --PORTAINER_EP=CICD-runner diff --git a/.gitea/workflows/UndeployPR.yaml b/.gitea/workflows/UndeployPR.yaml index 95d9dbc..f17b457 100644 --- a/.gitea/workflows/UndeployPR.yaml +++ b/.gitea/workflows/UndeployPR.yaml @@ -13,7 +13,8 @@ jobs: - name: Install pip packages run: pip3 install requests python-dotenv --quiet - name: Run Undeploy script - run: python3 deploy/portainer/undeploy.py + run: > + python3 deploy/portainer/undeploy.py --PORTAINER https://dvportainer.privatedns.org --PORTAINER_API_KEY=ptr_RwxH2Cd+htdD2FoFiG46erT9beyvj9VoF3BrQPtDH3Q= --PORTAINER_EP=CICD-runner