From 558251f5f39f12608daa1824df61d7b690ae60b9 Mon Sep 17 00:00:00 2001 From: Nicolas Caron Date: Wed, 13 Mar 2024 12:44:16 +0100 Subject: [PATCH] test workflow build and push on gitea registry --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48e26b0..442521f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,6 +44,12 @@ jobs: run: | ls -la + - name: Share files with build job + uses: actions/upload-artifact@v2 + with: + name: shared-files + path: . # Indiquez le répertoire à partager + build_and_push_image: runs-on: ubuntu-latest container: docker:latest @@ -71,6 +77,11 @@ jobs: # run: | # echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}" + - name: Download shared files + uses: actions/download-artifact@v2 + with: + name: shared-files + - name: Check folder run: | ls -la