Fix the B&P action
Some checks failed
Build and Publish / build_and_publish (push) Failing after 2m29s

This commit is contained in:
Nexus 2024-06-27 18:00:27 +01:00
parent e462d2d763
commit 7e860c92af

View file

@ -1,36 +1,38 @@
name: Build and Publish drop-in-url-previews
run-name: Build and Publish drop-in-url-previews
name: Build and Publish
run-name: Build and Publish
on: [push]
jobs:
build_and_publish:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest]
steps:
- name: Checkout repository
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to repo
uses: docker/login-action@v3
with:
registry: git.i-am.nexus
username: ${{ secrets.CR_USERNAME }}
password: ${{ secrets.CR_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: git.i-am.nexus/nex/drop-in-url-previews
- name: Build
- name: Log into forgejo CR
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
registry: git.i-am.nexus
username: nex
password: ${{ secrets.CR_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: false
load: true
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Push
run: |
docker push -a git.i-am.nexus/nex/drop-in-url-previews
cache-from: type=registry,ref=git.i-am.nexus/nex/drop-in-url-previews:master
cache-to: type=inline