diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index ecdd59d..90def89 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -59,6 +59,11 @@ jobs: - name: Run Test DB Script run: ./test_db.sh + - name: Download Artifacts + uses: actions/download-artifact@v3 + with: + name: build-artifacts + - name: Run Tests run: cargo test --verbose @@ -73,6 +78,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + + - name: Download Artifacts + uses: actions/download-artifact@v3 + with: + name: build-artifacts - name: Deploy to Staging run: | @@ -101,6 +111,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + + - name: Download Artifacts + uses: actions/download-artifact@v3 + with: + name: build-artifacts - name: Deploy to Main run: |