Removed further duplicated subdirectories #182
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Article | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Podman | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install podman | |
- name: Install Make | |
run: sudo apt-get -y install make | |
- name: Install Datalad | |
uses: datalad/datalad-action/install@main | |
- name: Set gin remote for data access | |
run: git remote add gin https://gin.g-node.org/TheChymera/opfvta-replication-2023.git | |
- name: Get data from datalad | |
run: | | |
git fetch gin | |
datalad get outputs/*/article.pdf | |
- name: Build container article | |
run: make container-article | |
- name: Upload PDF artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: article-pdf | |
path: article/article.pdf |