test workflow build and push on gitea registry
Some checks failed
Build and Push Docker Image / checkout_repository (push) Successful in 6s
Build and Push Docker Image / login_docker_registry (push) Successful in 5s
Build and Push Docker Image / prepare_environment (push) Failing after 1m55s
Build and Push Docker Image / build_and_push_image (push) Failing after 10s
Some checks failed
Build and Push Docker Image / checkout_repository (push) Successful in 6s
Build and Push Docker Image / login_docker_registry (push) Successful in 5s
Build and Push Docker Image / prepare_environment (push) Failing after 1m55s
Build and Push Docker Image / build_and_push_image (push) Failing after 10s
This commit is contained in:
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user