[CI/CD] Update build.yaml

Add "apt-get update" before "apt-get install"
This commit is contained in:
Hui Yu
2020-06-28 13:32:41 +08:00
committed by GitHub
parent 194bec6f67
commit 02928810af

View File

@@ -13,7 +13,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Prepare - name: Prepare
run: sudo apt-get install -y libcurl4-openssl-dev uncrustify libyaml-dev run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev uncrustify libyaml-dev
- name: Build client library - name: Build client library
run: | run: |
cd kubernetes cd kubernetes