From 5a6a5e229e04b0c7bd39ca428b7011d288f8d129 Mon Sep 17 00:00:00 2001 From: Jean Desulme Date: Wed, 13 Oct 2021 13:14:13 -0700 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1dfa866..a2bb4b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,4 +59,16 @@ jobs: BUILD_REVISION=${{ github.sha }} BUILD_VERSION=${{ github.sha }} push: false - + + # Upload an artifact to GitHub + - name: Upload Artifact to Github Build Job + uses: actions/upload-artifact@v2 + with: + name: my-artifact + path: ${{ github.workspace }} + + # Download an artifact from GitHub + - name: Download Artifact from Github Build Job + uses: actions/download-artifact@v2 + with: + name: my-artifact