1
1
mirror of https://github.com/github/semantic.git synced 2024-11-22 23:29:37 +03:00

let's assume there's a bin directory here

This commit is contained in:
Patrick Thomson 2020-07-10 13:13:08 -04:00
parent c8f387c148
commit d89940ffc2

View File

@ -17,11 +17,10 @@ jobs:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- name: Download/cache bazel bersion
- name: Download/cache bazel version
run: |
curl -LO "https://github.com/bazelbuild/bazel/releases/download/3.1.0/bazel-3.1.0-linux-x86_64"
mkdir "bin/" || true
mv bazel-3.0.0-linux-x86_64 "bin/bazel"
mv bazel-3.1.0-linux-x86_64 "bin/bazel"
chmod +x "bin/bazel"
- uses: actions/cache@v2