We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d14f0 commit cea3782Copy full SHA for cea3782
.github/workflows/release.yml
@@ -91,7 +91,8 @@ jobs:
91
# due to https://github.com/google/google-java-format/issues/1072.
92
os: [ubuntu-20.04, macos-latest, windows-latest]
93
env:
94
- SUFFIX: ${{fromJson('{"ubuntu-latest":"linux-x86-64", "macos-latest":"darwin-arm64", "windows-latest":"windows-x86-64"}')[matrix.os]}}
+ # NB: Must keep the keys in this inline JSON below in line with the os: above!
95
+ SUFFIX: ${{fromJson('{"ubuntu-20.04":"linux-x86-64", "macos-latest":"darwin-arm64", "windows-latest":"windows-x86-64"}')[matrix.os]}}
96
EXTENSION: ${{ matrix.os == 'windows-latest' && '.exe' || '' }}
97
steps:
98
- name: "Check out repository"
0 commit comments