1
0

3 Commits 69bbfe9a55 ... 01d8d57f1a

Autor SHA1 Nachricht Datum
  Lennart Wittkuhn 01d8d57f1a change entrypoint vor 1 Jahr
  Lennart Wittkuhn d9361beefe rename artifact folder vor 1 Jahr
  Lennart Wittkuhn c6549da6c7 add job dependency vor 1 Jahr
1 geänderte Dateien mit 5 neuen und 2 gelöschten Zeilen
  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