test workflow build and push on gitea registry
This commit is contained in:
parent
1a283360aa
commit
558251f5f3
.github/workflows
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue