test workflow build and push on gitea registry
Build and Push Docker Image / checkout_repository (push) Successful in 6s Details
Build and Push Docker Image / login_docker_registry (push) Successful in 5s Details
Build and Push Docker Image / prepare_environment (push) Failing after 1m55s Details
Build and Push Docker Image / build_and_push_image (push) Failing after 10s Details

This commit is contained in:
Nicolas CARON 2024-03-13 12:44:16 +01:00
parent 1a283360aa
commit 558251f5f3
1 changed files with 11 additions and 0 deletions

View File

@ -44,6 +44,12 @@ jobs:
run: | run: |
ls -la 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: build_and_push_image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: docker:latest container: docker:latest
@ -71,6 +77,11 @@ jobs:
# run: | # run: |
# echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}" # 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 - name: Check folder
run: | run: |
ls -la ls -la