diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index bb8536e..69accdd 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -56,3 +56,15 @@ jobs: ####################### - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 +# Upload an artifact to GitHub + - name: Upload Artifact to Github Build Job + uses: actions/upload-artifact@v2 + with: + name: my-artifact + path: path/to/artifact/world.txt + +# Download an artifact from GitHub + - name: Download Artifact from Github Build Job + uses: actions/download-artifact@v2 + with: + name: my-artifact