Build Docker image with Gitea actions
Build and publish Docker image / build (push) Failing after 12s
Details
Build and publish Docker image / build (push) Failing after 12s
Details
This commit is contained in:
parent
084e8acc7e
commit
ac5afbff95
|
@ -0,0 +1,40 @@
|
|||
name: Build and publish Docker image
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
REGISTRY: git.newpipe-ev.de
|
||||
# make sure the name is lowercase, otherwise Docker won't accept it
|
||||
IMAGE_NAME: git.newpipe-ev.de/newpipe-ev/website:latest
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Log in to registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
platforms: |
|
||||
linux/amd64
|
Loading…
Reference in New Issue