diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index 9b586a62..ff7c1043 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -75,6 +75,12 @@ runs: shell: bash run: go mod tidy + - name: Crete service account file + shell: bash + run: | + echo "${{ inputs.service_account_json }}" > ~/.service_account.json + cat ~/.service_account.json + - name: Run acceptance test file if: ${{ inputs.test_file != '' }} shell: bash diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 50c0f8e7..6865e0d5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,6 +15,8 @@ on: branches: - '!main' - '!alpha' + paths: + - '!.github' env: GO_VERSION: "1.25" diff --git a/.github/workflows/tf-acc-test.yaml b/.github/workflows/tf-acc-test.yaml index 83bff12f..6c6cb981 100644 --- a/.github/workflows/tf-acc-test.yaml +++ b/.github/workflows/tf-acc-test.yaml @@ -18,6 +18,7 @@ jobs: shell: bash run: | echo "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON }}" >~/.service_account.json + cat ~/.service_account.json - name: Run Test uses: ./.github/actions/acc_test