diff --git a/.github/workflows/run-full-build.yml b/.github/workflows/run-full-build.yml index 7f41160d..520f9a92 100644 --- a/.github/workflows/run-full-build.yml +++ b/.github/workflows/run-full-build.yml @@ -18,10 +18,6 @@ jobs: - name: Check out code uses: actions/checkout@v2 - - uses: "google-github-actions/auth@v2" - with: - credentials_json: "${{ secrets.DGM_GITHUB_ACTION_CREDENTIALS }}" - - name: Display env variables run: | echo "Workspace directory: $GITHUB_WORKSPACE" \ @@ -30,6 +26,10 @@ jobs: - name: Give the dbcp user ownership of the workspace run: sudo chown -R 1000:1000 $GITHUB_WORKSPACE + - uses: "google-github-actions/auth@v2" + with: + credentials_json: "${{ secrets.DGM_GITHUB_ACTION_CREDENTIALS }}" + - name: Set up Docker Compose run: | sudo apt-get update @@ -39,9 +39,9 @@ jobs: run: | docker-compose up -d - - name: Run full ETL - run: | - make all_local + # - name: Run full ETL + # run: | + # make all_local - name: Run all test run: | @@ -52,6 +52,6 @@ jobs: run: | docker-compose down - - name: Give ownership of the workspace back to root - if: always() - run: sudo chown -R 0:0 $GITHUB_WORKSPACE + # - name: Give ownership of the workspace back to root + # if: always() + # run: sudo chown -R 0:0 $GITHUB_WORKSPACE