fix calling task
This commit is contained in:
parent
965f82b2de
commit
5d474b5dfa
|
@ -14,13 +14,13 @@ jobs:
|
||||||
sudo apt-get install ./task_linux_amd64.deb && rm task_linux_amd64.deb
|
sudo apt-get install ./task_linux_amd64.deb && rm task_linux_amd64.deb
|
||||||
- name: install OpenRefine and openrefine-client
|
- name: install OpenRefine and openrefine-client
|
||||||
run: task install
|
run: task install
|
||||||
- name: run task
|
- name: run task $GITHUB_JOB
|
||||||
run: task $GITHUB_JOB
|
run: task "$GITHUB_JOB:main"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: OpenRefine project(s)
|
name: OpenRefine project(s)
|
||||||
path: $GITHUB_JOB/$GITHUB_JOB.openrefine.tar.gz
|
path: "$GITHUB_JOB/$GITHUB_JOB.openrefine.tar.gz"
|
||||||
- name: commit and push if output changed
|
- name: commit and push if output changed
|
||||||
run: |-
|
run: |-
|
||||||
git config user.name "Automated"
|
git config user.name "Automated"
|
||||||
|
|
Loading…
Reference in New Issue