This commit is contained in:
Blake Blackshear 2024-02-13 07:29:58 -06:00
parent 9149b6dd60
commit e86d2f7d67
2 changed files with 6 additions and 2 deletions

View File

@ -13,8 +13,10 @@ runs:
steps: steps:
- name: Show disk info - name: Show disk info
run: df -h run: df -h
shell: bash
- name: Show docker image info - name: Show docker image info
run: docker image ls --all run: docker image ls --all
shell: bash
- name: Maximize build space - name: Maximize build space
uses: easimon/maximize-build-space@master uses: easimon/maximize-build-space@master
with: with:
@ -27,8 +29,10 @@ runs:
remove-docker-images: 'true' remove-docker-images: 'true'
- name: Show disk info - name: Show disk info
run: df -h run: df -h
shell: bash
- name: Show docker image info - name: Show docker image info
run: docker image ls --all run: docker image ls --all
shell: bash
- id: lowercaseRepo - id: lowercaseRepo
uses: ASzc/change-string-case-action@v5 uses: ASzc/change-string-case-action@v5
with: with:

View File

@ -23,13 +23,13 @@ jobs:
steps: steps:
- name: Show disk info - name: Show disk info
run: df -h run: df -h
- name: Check out code
uses: actions/checkout@v4
- name: Set up QEMU and Buildx - name: Set up QEMU and Buildx
id: setup id: setup
uses: ./.github/actions/setup uses: ./.github/actions/setup
with: with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check out code
uses: actions/checkout@v4
- name: Show disk info - name: Show disk info
run: df -h run: df -h
- name: Build and push amd64 standard build - name: Build and push amd64 standard build