no sudo inside gitlab

This commit is contained in:
Anton-4 2021-10-25 09:51:12 +02:00 committed by GitHub
parent c523ad5db5
commit fb67bae922
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: install earthly - name: install earthly
run: sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly && /usr/local/bin/earthly bootstrap --with-autocomplete' run: /bin/sh -c 'wget https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly && /usr/local/bin/earthly bootstrap --with-autocomplete'
- name: Earthly print version - name: Earthly print version
run: earthly --version run: earthly --version
- name: install dependencies, build, run tests, build release - name: install dependencies, build, run tests, build release