Skip to content

Commit 199b1f5

Browse files
committed
fix: port upstream changes over to our fork
Signed-off-by: Matthias Riegler <[email protected]>
1 parent d4ab66c commit 199b1f5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release-ankorstore.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
release-ui:
2525
if: startsWith(github.ref, 'refs/tags/v') == true
26-
runs-on: ubuntu-18.04
26+
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v1
2929
- uses: actions/setup-node@v1
@@ -59,13 +59,17 @@ jobs:
5959
runs-on: macos-11
6060
steps:
6161
- name: Set up Go
62-
uses: actions/setup-go@v1
62+
uses: actions/setup-go@v3
6363
with:
6464
go-version: 1.19
6565
- id: get_version
6666
run: |
6767
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
6868
echo "::set-output name=release_version::$RELEASE_VERSION"
69+
- name: install-go-bindata
70+
run: go install github.com/go-bindata/go-bindata/go-bindata@latest
71+
env:
72+
GOPATH: /Users/runner/work/devspace/go
6973
- name: Check out code into the Go module directory
7074
uses: actions/checkout@v1
7175
- name: Download ui tar

0 commit comments

Comments
 (0)