diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-03-09 21:06:18 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-03-09 21:06:18 +0800 |
commit | 04ac3cdb389fd0969f7e3be860e9d19ffd0b2f67 (patch) | |
tree | 3c46e4e412dc5f7f36ca5192e2adffec864bd98e /.github/workflows | |
parent | d608c62fd22ead85e528aa21205060c23275b1b6 (diff) | |
download | lua-language-server-04ac3cdb389fd0969f7e3be860e9d19ffd0b2f67.zip |
update workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01fdb4b9..e97f2868 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,14 +36,14 @@ jobs: - name: Prepare container if: ${{ matrix.target == 'linux' }} run: | - sudo apt-get update - sudo apt-get install -y gcc + apt-get update + apt-get install -y gcc - name: Install aarch64-linux-gnu if: ${{ matrix.platform == 'linux-arm64' }} run: | - sudo apt-get update - sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu + apt-get update + apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu - uses: actions/checkout@v3 with: |