improve go-task install

This commit is contained in:
Felix Lohmeier 2021-07-14 22:49:07 +02:00 committed by GitHub
parent 78567e5f44
commit 2f0ef9feca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -8,10 +8,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install go-task
- name: install go-task 3.2.2
run: |
wget https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.deb
sudo apt-get install ./task_linux_amd64.deb && rm task_linux_amd64.deb
echo $GITHUB_PATH
wget --no-verbose -O task.tar.gz https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.tar.gz
tar -xzf task.tar.gz -C ~/.bin task && rm task.tar.gz
- name: install OpenRefine and openrefine-client
run: task install
- name: run task ${{ github.job }}