From 5be30f393ce12bf0fc66743b41b48eccb6002710 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 14 Mar 2023 02:29:11 +0100 Subject: [PATCH] dont expose .env contents, relative paths for scripts --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 75831b1..266bf96 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,7 +22,7 @@ jobs: - name: Load .env uses: aarcangeli/load-dotenv@v1.0.0 with: - quiet: false + quiet: true - name: Checkout Ocelot code uses: actions/checkout@v3 with: @@ -35,9 +35,9 @@ jobs: with: path: "ocelot/deployment/configurations/${{ env.CONFIGURATION }}" - name: Decrypt all secrets - run: ocelot/deployment/scripts/secrets.decrypt.sh + run: ./ocelot/deployment/scripts/secrets.decrypt.sh - name: Upgrade Cluster - run: ocelot/deployment/scripts/cluster.upgrade.sh + run: ./ocelot/deployment/scripts/cluster.upgrade.sh # ########################################################################## # # SET ENVS ###############################################################