Skip to content

Commit eff47d5

Browse files
committed
fix protoc generation
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent d3d2c4c commit eff47d5

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,27 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: asdf-vm/actions/install@v3
14+
15+
- name: Setup ASDF itself
16+
uses: asdf-vm/actions/setup@v3
17+
- name: Cache ASDF
18+
uses: actions/cache@v4
19+
id: asdf-cache
20+
with:
21+
# https://github.com/asdf-vm/asdf/blob/master/.gitignore
22+
path: |
23+
~/.asdf/installs
24+
~/.asdf/plugins
25+
~/.asdf/shims
26+
key: ${{ runner.os }}-asdf-tools-${{ hashFiles('.tool-versions') }}
27+
restore-keys: ${{ runner.os }}-asdf-tools-
28+
- name: Install ASDF plugins
29+
uses: asdf-vm/actions/install@v3
30+
if: ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
31+
- name: Reshim installed ASDF tools
32+
shell: bash
33+
run: asdf reshim
34+
1535
- name: Cache local Maven repository
1636
uses: actions/cache@v4
1737
with:

0 commit comments

Comments
 (0)