20240822_092939

This commit is contained in:
Barry Matheney 2024-08-22 09:29:39 -04:00
parent 0fb23c48bd
commit a2d1d23639

View file

@ -18,10 +18,10 @@ 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 }}." # echo "🍏 This job's status is ${{ job.status }}."
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -30,6 +30,10 @@ jobs:
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
run: |
ls ${{ github.workspace }} -alt
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