mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 14:55:50 +00:00
20240822_110018
This commit is contained in:
parent
a127985590
commit
af0482a78b
1 changed files with 9 additions and 9 deletions
18
.github/workflows/docker-build.yml
vendored
18
.github/workflows/docker-build.yml
vendored
|
@ -18,22 +18,22 @@ jobs:
|
||||||
echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
|
echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
|
||||||
echo "🖥️ The workflow is now ready to test your code on the runner."
|
echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
printenv | sort
|
printenv | sort
|
||||||
# - name: Script Set 2 - List files in the repository
|
- name: Script Set 2 - List files in the repository
|
||||||
# run: |
|
run: |
|
||||||
# ls ${{ github.workspace }} -alt
|
# ls ${{ github.workspace }} -alt
|
||||||
# echo "🍏 This job's status is ${{ job.status }}."
|
ls -alt
|
||||||
|
echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: docker:latest # Running Docker commands inside Docker container (Docker-in-Docker)
|
image: docker:latest # Running Docker commands inside Docker container (Docker-in-Docker)
|
||||||
options: --privileged # Required for Docker-in-Docker setup
|
options: --privileged # Required for Docker-in-Docker setup
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# - name: Script Set 2 - List files in the repository
|
- name: Script Set 2 - List files in the repository
|
||||||
# run: |
|
run: |
|
||||||
# ls ${{ github.workspace }} -alt
|
ls -alt
|
||||||
# echo "🍏 This job's status is ${{ job.status }}."
|
echo "🍏 This job's status is ${{ job.status }}."
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
|
|
Loading…
Reference in a new issue