fix: builder and sdk changes #81

Merged
marcel.henselin merged 85 commits from chore/update_goreleaser into alpha 2026-03-11 13:13:46 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 1c756e3fe0 - Show all commits

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