3 Commits 69bbfe9a55 ... 01d8d57f1a

Author SHA1 Message Date
  Lennart Wittkuhn 01d8d57f1a change entrypoint 1 year ago
  Lennart Wittkuhn d9361beefe rename artifact folder 1 year ago
  Lennart Wittkuhn c6549da6c7 add job dependency 1 year ago
1 changed files with 5 additions and 2 deletions
  1. 5 2
      .github/workflows/main.yml

+ 5 - 2
.github/workflows/main.yml

@@ -8,6 +8,8 @@ jobs:
     runs-on: ubuntu-latest
     container:
       image: lennartwittkuhn/datalad:0.17.6
+      with:
+        entrypoint: /bin/sh
     steps:
       - name: Install and Build
         run: |
@@ -16,10 +18,11 @@ jobs:
       - name: Upload artifact
         uses: actions/upload-artifact@v2
         with:
-          name: page
+          name: illustrations
           path: replay-illustrations/illustrations
   build-deploy:
     runs-on: ubuntu-latest
+    needs: retrieve
     permissions:
       contents: write
     steps:
@@ -28,7 +31,7 @@ jobs:
       - name: Download artifact
         uses: actions/download-artifact@v2
         with:
-          name: page
+          name: illustrations
           path: replay-illustrations/illustrations
       - name: Set up Quarto
         uses: quarto-dev/quarto-actions/setup@v2