Configure docker before
Some checks failed
build-ublue-custom / Build and push image (push) Failing after 1m2s
Some checks failed
build-ublue-custom / Build and push image (push) Failing after 1m2s
This commit is contained in:
parent
78bca55e6c
commit
fc2a952c75
1 changed files with 13 additions and 1 deletions
|
@ -29,9 +29,20 @@ jobs:
|
||||||
id-token: write
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install docker
|
||||||
|
run: apt update && apt install -y docker.io
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: https://github.com/actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: https://github.com/docker/setup-qemu-action@v3
|
||||||
|
with:
|
||||||
|
platforms: amd64
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Generate tags
|
- name: Generate tags
|
||||||
id: generate-tags
|
id: generate-tags
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -108,7 +119,8 @@ jobs:
|
||||||
# to consume. For more details, review the image signing section of the README.
|
# to consume. For more details, review the image signing section of the README.
|
||||||
|
|
||||||
# Sign container
|
# Sign container
|
||||||
- uses: https://github.com/sigstore/cosign-installer@v3.5.0
|
- name: Install cosign
|
||||||
|
uses: https://github.com/sigstore/cosign-installer@v3.5.0
|
||||||
if: gitea.event_name != 'pull_request'
|
if: gitea.event_name != 'pull_request'
|
||||||
|
|
||||||
- name: Sign container image
|
- name: Sign container image
|
||||||
|
|
Loading…
Reference in a new issue