diff --git a/.github/workflows/download.yml b/.github/workflows/download.yml index 773629cd..7edeeece 100644 --- a/.github/workflows/download.yml +++ b/.github/workflows/download.yml @@ -3,12 +3,15 @@ name: Download on: push jobs: - download: + wait: runs-on: ubuntu-latest steps: - name: Wait - run: | - sleep 60s + run: sleep 60s + download: + runs-on: ubuntu-latest + needs: wait + steps: - name: Checkout uses: actions/checkout@v2 - name: Download @@ -18,11 +21,10 @@ jobs: name: artifact path: artifact - name: Test - run: | - cat artifact/sha | grep ${{github.sha}} + run: cat artifact/sha | grep ${{github.sha}} download-branch: runs-on: ubuntu-latest - needs: download + needs: wait steps: - name: Checkout uses: actions/checkout@v2 @@ -34,8 +36,7 @@ jobs: path: artifact branch: master - name: Test - run: | - cat artifact/sha | grep ${{github.sha}} + run: cat artifact/sha | grep ${{github.sha}} download-repo: runs-on: ubuntu-latest steps: @@ -50,5 +51,4 @@ jobs: path: bottles pr: 58588 - name: Test - run: | - ls bottles/gofish--0.13.0*.bottle.* \ No newline at end of file + run: ls bottles/gofish--0.13.0*.bottle.* \ No newline at end of file