fix: builder and sdk changes #81
3 changed files with 6 additions and 3 deletions
3
.github/actions/acc_test/action.yaml
vendored
3
.github/actions/acc_test/action.yaml
vendored
|
|
@ -44,7 +44,7 @@ inputs:
|
||||||
service_account_json_file_path:
|
service_account_json_file_path:
|
||||||
description: "STACKIT service account JSON file contents"
|
description: "STACKIT service account JSON file contents"
|
||||||
required: true
|
required: true
|
||||||
default: "~/.stackit/credentials.json"
|
default: '~/.stackit/credentials.json'
|
||||||
|
|
||||||
test_file:
|
test_file:
|
||||||
description: "testfile to run"
|
description: "testfile to run"
|
||||||
|
|
@ -105,6 +105,7 @@ runs:
|
||||||
- name: Crete service account file
|
- name: Crete service account file
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
mkdir -p dirname "$(realpath ${{ inputs.service_account_json_file_path }})"
|
||||||
echo "${{ inputs.service_account_json }}" > "${{ inputs.service_account_json_file_path }}"
|
echo "${{ inputs.service_account_json }}" > "${{ inputs.service_account_json_file_path }}"
|
||||||
cat "${{ inputs.service_account_json_file_path }}"
|
cat "${{ inputs.service_account_json_file_path }}"
|
||||||
|
|
||||||
|
|
|
||||||
3
.github/actions/build/action.yaml
vendored
3
.github/actions/build/action.yaml
vendored
|
|
@ -37,7 +37,8 @@ runs:
|
||||||
id: goenv
|
id: goenv
|
||||||
run: |
|
run: |
|
||||||
set -e
|
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
|
- name: Restore cached GO pkg
|
||||||
id: cache-gopkg
|
id: cache-gopkg
|
||||||
|
|
|
||||||
3
.github/workflows/ci.yaml
vendored
3
.github/workflows/ci.yaml
vendored
|
|
@ -62,7 +62,8 @@ jobs:
|
||||||
id: goenv
|
id: goenv
|
||||||
run: |
|
run: |
|
||||||
set -e
|
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
|
- name: Restore cached GO pkg
|
||||||
id: cache-gopkg
|
id: cache-gopkg
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue