20240822_110018

This commit is contained in:
Barry Matheney 2024-08-22 11:00:18 -04:00
parent a127985590
commit af0482a78b

View file

@ -18,22 +18,22 @@ jobs:
echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
echo "🖥️ The workflow is now ready to test your code on the runner."
printenv | sort
# - name: Script Set 2 - List files in the repository
# run: |
# ls ${{ github.workspace }} -alt
# echo "🍏 This job's status is ${{ job.status }}."
- name: Script Set 2 - List files in the repository
run: |
# ls ${{ github.workspace }} -alt
ls -alt
echo "🍏 This job's status is ${{ job.status }}."
docker:
runs-on: ubuntu-latest
container:
image: docker:latest # Running Docker commands inside Docker container (Docker-in-Docker)
options: --privileged # Required for Docker-in-Docker setup
steps:
# - name: Script Set 2 - List files in the repository
# run: |
# ls ${{ github.workspace }} -alt
# echo "🍏 This job's status is ${{ job.status }}."
- name: Script Set 2 - List files in the repository
run: |
ls -alt
echo "🍏 This job's status is ${{ job.status }}."
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub