From 199b1f5b9739337ff8bbdb718a24e2a9d6eb6799 Mon Sep 17 00:00:00 2001 From: Matthias Riegler Date: Thu, 5 Oct 2023 14:02:36 +0200 Subject: [PATCH] fix: port upstream changes over to our fork Signed-off-by: Matthias Riegler --- .github/workflows/release-ankorstore.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-ankorstore.yaml b/.github/workflows/release-ankorstore.yaml index 7f9b6e4899..0c584cd044 100644 --- a/.github/workflows/release-ankorstore.yaml +++ b/.github/workflows/release-ankorstore.yaml @@ -23,7 +23,7 @@ on: jobs: release-ui: if: startsWith(github.ref, 'refs/tags/v') == true - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 @@ -59,13 +59,17 @@ jobs: runs-on: macos-11 steps: - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: 1.19 - id: get_version run: | RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p') echo "::set-output name=release_version::$RELEASE_VERSION" + - name: install-go-bindata + run: go install github.com/go-bindata/go-bindata/go-bindata@latest + env: + GOPATH: /Users/runner/work/devspace/go - name: Check out code into the Go module directory uses: actions/checkout@v1 - name: Download ui tar