dont expose .env contents, relative paths for scripts

This commit is contained in:
Ulf Gebhardt 2023-03-14 02:29:11 +01:00
parent 52083f90d3
commit 5be30f393c
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -22,7 +22,7 @@ jobs:
- name: Load .env - name: Load .env
uses: aarcangeli/load-dotenv@v1.0.0 uses: aarcangeli/load-dotenv@v1.0.0
with: with:
quiet: false quiet: true
- name: Checkout Ocelot code - name: Checkout Ocelot code
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
@ -35,9 +35,9 @@ jobs:
with: with:
path: "ocelot/deployment/configurations/${{ env.CONFIGURATION }}" path: "ocelot/deployment/configurations/${{ env.CONFIGURATION }}"
- name: Decrypt all secrets - name: Decrypt all secrets
run: ocelot/deployment/scripts/secrets.decrypt.sh run: ./ocelot/deployment/scripts/secrets.decrypt.sh
- name: Upgrade Cluster - name: Upgrade Cluster
run: ocelot/deployment/scripts/cluster.upgrade.sh run: ./ocelot/deployment/scripts/cluster.upgrade.sh
# ########################################################################## # ##########################################################################
# # SET ENVS ############################################################### # # SET ENVS ###############################################################