fix: fix tf acc test pipeline
Some checks failed
CI Workflow / Prepare GO cache (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI run tests (pull_request) Has been cancelled
CI Workflow / CI run build and linting (pull_request) Has been cancelled
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Check GoReleaser config (pull_request) Has been cancelled

This commit is contained in:
Marcel S. Henselin 2026-03-10 10:59:01 +01:00
parent 9b5db499b6
commit 1c756e3fe0
3 changed files with 6 additions and 3 deletions

View file

@ -44,7 +44,7 @@ inputs:
service_account_json_file_path:
description: "STACKIT service account JSON file contents"
required: true
default: "~/.stackit/credentials.json"
default: '~/.stackit/credentials.json'
test_file:
description: "testfile to run"
@ -105,6 +105,7 @@ runs:
- name: Crete service account file
shell: bash
run: |
mkdir -p dirname "$(realpath ${{ inputs.service_account_json_file_path }})"
echo "${{ inputs.service_account_json }}" > "${{ inputs.service_account_json_file_path }}"
cat "${{ inputs.service_account_json_file_path }}"

View file

@ -37,7 +37,8 @@ runs:
id: goenv
run: |
set -e
echo "::set-output name=gomodcache::$(go env GOMODCACHE)"
# echo "::set-output name=gomodcache::$(go env GOMODCACHE)"
echo "gomodcache=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
- name: Restore cached GO pkg
id: cache-gopkg

View file

@ -62,7 +62,8 @@ jobs:
id: goenv
run: |
set -e
echo "::set-output name=gomodcache::$(go env GOMODCACHE)"
# echo "::set-output name=gomodcache::$(go env GOMODCACHE)"
echo "gomodcache=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
- name: Restore cached GO pkg
id: cache-gopkg