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
Showing only changes of commit b9b2bc31bd - Show all commits

View file

@ -53,6 +53,35 @@ runs:
# set -e
# go run generator/main.go build
- name: Determine GOMODCACHE
shell: bash
id: goenv
run: |
set -e
echo "::set-ouput name=gomodcache::$(go env GOMODCACHE)"
- name: Restore cached GO pkg
id: cache-gopkg
uses: https://code.forgejo.org/actions/cache/restore@v5
with:
path: ${{ steps.goenv.outputs.gomodcache }}
key: ${{ runner.os }}-gopkg
- name: Get all go packages
if: steps.cache-gopkg.outputs.cache-hit != 'true'
shell: bash
run: |
set -e
go get ./...
- name: Save Primes
id: cache-primes-save
uses: https://code.forgejo.org/actions/cache/save@v5
with:
path: |
${{ steps.goenv.outputs.gomodcache }}
key: ${{ runner.os }}-gopkg
- name: Run make to build app
shell: bash
run: |