To lowercase
All checks were successful
build-ublue-custom / Build and push image (push) Successful in 8m52s

This commit is contained in:
Florian RICHER 2024-10-12 00:10:28 +02:00
parent ad427276df
commit 26f94742c5
2 changed files with 7 additions and 4 deletions

View file

@ -13,6 +13,9 @@ on:
- '**/README.md' - '**/README.md'
workflow_dispatch: workflow_dispatch:
env:
IMAGE: gitea.mrdev023.fr/justforfun/fedora_atomic_custom_image
jobs: jobs:
build_push: build_push:
name: Build and push image name: Build and push image
@ -54,7 +57,7 @@ jobs:
uses: https://github.com/docker/metadata-action@v5 uses: https://github.com/docker/metadata-action@v5
id: meta id: meta
with: with:
images: gitea.mrdev023.fr/JustForFun/fedora_atomic_custom_image images: ${{ env.IMAGE }}
- name: Build and Push Image - name: Build and Push Image
uses: https://github.com/docker/build-push-action@v5 uses: https://github.com/docker/build-push-action@v5
@ -62,12 +65,12 @@ jobs:
context: . context: .
file: ./Containerfile file: ./Containerfile
push: true push: true
tags: gitea.mrdev023.fr/JustForFun/fedora_atomic_custom_image:latest tags: ${{ env.IMAGE }}:latest
# - name: Sign container image # - name: Sign container image
# if: gitea.event_name != 'pull_request' # if: gitea.event_name != 'pull_request'
# run: | # run: |
# cosign sign -y --key env://COSIGN_PRIVATE_KEY gitea.mrdev023.fr/JustForFun/fedora_atomic_custom_image:latest # cosign sign -y --key env://COSIGN_PRIVATE_KEY ${{ env.IMAGE }}:latest
# env: # env:
# COSIGN_PRIVATE_KEY: ${{ secrets.SIGNING_SECRET }} # COSIGN_PRIVATE_KEY: ${{ secrets.SIGNING_SECRET }}
# COSIGN_PASSWORD: "" # COSIGN_PASSWORD: ""

View file

@ -3,7 +3,7 @@
## Install ## Install
``` ```
rpm-ostree rebase ostree-unverified-registry:gitea.mrdev023.fr/JustForFun/fedora_atomic_custom_image:latest rpm-ostree rebase ostree-unverified-registry:gitea.mrdev023.fr/justforfun/fedora_atomic_custom_image:latest
``` ```
## Thanks ## Thanks