From 702e7f7403ddc02772cf919c89f9bdcf88693383 Mon Sep 17 00:00:00 2001 From: rshunim Date: Tue, 26 Sep 2023 17:46:31 +0300 Subject: [PATCH] artifacts --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af93a3292bdfc..cd0fb0d02f7f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,21 +15,22 @@ jobs: run: ./docker/build_docker.sh - name: Step 1 - Create a temporary artifact downloads folder - run: mkdir downloads + run: mkdir artifacts - name: step 2 - Add artifacts to publish to the temp folder run: | - cd downloads + cd artifacts echo 'alpha' > alpha.html echo 'bravo' > bravo.html echo 'charlie' > charlie.html cd .. - name: Step 3 - Use the Upload Artifact GitHub Action - uses: actions/upload-artifact@v2 - with: - name: assets-for-download - path: downloads + uses: actions/upload-artifact@v3 + with: + name: artifacts + path: artifacts + # no_output_timeout: 60m # - store_artifacts: