2021-07-14 22:32:59 +02:00
|
|
|
name: run all tasks
|
2021-07-14 22:23:53 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows you to run this workflow manually from the Actions tab
|
|
|
|
|
|
|
|
jobs:
|
2021-07-14 22:32:59 +02:00
|
|
|
example-doaj: # available as environment variable $GITHUB_JOB and context ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2021-07-14 22:32:59 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-07-14 22:49:07 +02:00
|
|
|
- name: install go-task 3.2.2
|
2021-07-14 22:23:53 +02:00
|
|
|
run: |
|
2021-07-14 22:56:04 +02:00
|
|
|
echo "$PATH"
|
2021-07-14 22:49:07 +02:00
|
|
|
wget --no-verbose -O task.tar.gz https://github.com/go-task/task/releases/download/v3.2.2/task_linux_amd64.tar.gz
|
2021-07-14 22:56:04 +02:00
|
|
|
tar -xzf task.tar.gz -C ~/usr/local/bin task && rm task.tar.gz
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: install OpenRefine and openrefine-client
|
|
|
|
run: task install
|
2021-07-14 22:32:59 +02:00
|
|
|
- name: run task ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
run: task "$GITHUB_JOB:main"
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: always()
|
|
|
|
with:
|
2021-07-14 22:32:59 +02:00
|
|
|
name: ${{ github.job }}
|
|
|
|
path: ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: commit and push if output changed # has nothing to do currently because of .gitignore
|
|
|
|
run: |-
|
|
|
|
git config user.name "Automated"
|
|
|
|
git config user.email "actions@users.noreply.github.com"
|
|
|
|
git add -A
|
|
|
|
git status
|
|
|
|
git commit -m "latest change: $(date -u)" || exit 0
|
|
|
|
git push
|
2021-07-14 22:32:59 +02:00
|
|
|
example-duplicates: # available as environment variable $GITHUB_JOB and context ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2021-07-14 22:32:59 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: install go-task
|
|
|
|
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
|
|
|
|
- name: install OpenRefine and openrefine-client
|
|
|
|
run: task install
|
2021-07-14 22:32:59 +02:00
|
|
|
- name: run task ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
run: task "$GITHUB_JOB:main"
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: always()
|
|
|
|
with:
|
2021-07-14 22:32:59 +02:00
|
|
|
name: ${{ github.job }}
|
|
|
|
path: ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: commit and push if output changed # has nothing to do currently because of .gitignore
|
|
|
|
run: |-
|
|
|
|
git config user.name "Automated"
|
|
|
|
git config user.email "actions@users.noreply.github.com"
|
|
|
|
git add -A
|
|
|
|
git status
|
|
|
|
git commit -m "latest change: $(date -u)" || exit 0
|
|
|
|
git push
|
2021-07-14 22:32:59 +02:00
|
|
|
example-powerhouse: # available as environment variable $GITHUB_JOB and context ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2021-07-14 22:32:59 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: install go-task
|
|
|
|
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
|
|
|
|
- name: install OpenRefine and openrefine-client
|
|
|
|
run: task install
|
2021-07-14 22:32:59 +02:00
|
|
|
- name: run task ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
run: task "$GITHUB_JOB:main"
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
if: always()
|
|
|
|
with:
|
2021-07-14 22:32:59 +02:00
|
|
|
name: ${{ github.job }}
|
|
|
|
path: ${{ github.job }}
|
2021-07-14 22:23:53 +02:00
|
|
|
- name: commit and push if output changed # has nothing to do currently because of .gitignore
|
|
|
|
run: |-
|
|
|
|
git config user.name "Automated"
|
|
|
|
git config user.email "actions@users.noreply.github.com"
|
|
|
|
git add -A
|
|
|
|
git status
|
|
|
|
git commit -m "latest change: $(date -u)" || exit 0
|
|
|
|
git push
|