diff --git a/action.yml b/action.yml index 8fcf565..b371dad 100644 --- a/action.yml +++ b/action.yml @@ -29,11 +29,9 @@ runs: - name: Setup Enviornment Variables shell: bash run: | - echo "PARENT GOT ENV ^^^^" - echo "GOT ENV BELOW vvvv" - env echo CI_NAMESPACE=ci-$SHORT_COMMIT_SHA >> $GITHUB_ENV echo DEVOPS_GITEA_ELYSIUM_ORG_READ_TOKEN=${{ inputs.gitea-token }} >> $GITHUB_ENV + echo "Checking out Oasis" # Checkout Oasis - name: Checkout Oasis uses: actions/checkout@v3 @@ -62,13 +60,15 @@ runs: curl -sL https://get.garden.io/install.sh | bash -s -- $tag_param echo PATH=$PATH:$HOME/.garden/bin >> $GITHUB_ENV git config --global --add safe.directory $HOME/.garden/bin/static + echo "Finished intalling Garden!" # Configure K&S - name: Configure K8S run: | echo "Setup kubeconfig" mkdir -p ~/.kube && echo ${{ inputs.kubeconfig }} | base64 -d > ~/.kube/config && - chmod 700 ~/.kube/config + chmod 700 ~/.kube/config + echo "Finished setting up kubeconfig" - name: Export Envars shell: bash run: |