mightypanders
251756c622
All checks were successful
Build a docker image for node-jellyfin-role-bot / build-docker-image (push) Successful in 14s
Co-authored-by: magnetotail <magnetotail@posteo.net> Reviewed-on: #22 Co-authored-by: mightypanders <mighty.panders@posteo.de> Co-committed-by: mightypanders <mighty.panders@posteo.de>
24 lines
806 B
YAML
24 lines
806 B
YAML
name: Build a docker image for node-jellyfin-role-bot
|
|
run-name: ${{ gitea.actor }} is building an image
|
|
on: [push]
|
|
env:
|
|
REGISTRY: gitea.brudi.xyz
|
|
IMAGE_NAME: ${{ gitea.repository }}
|
|
USER: ${{ gitea.actor }}
|
|
jobs:
|
|
build-docker-image:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Log in to the Container registry
|
|
run: docker login -u ${{ env.USER }} -p ${{ secrets.TOKEN }} ${{ env.REGISTRY }}
|
|
- name: Build Container
|
|
run: docker build -t "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest" .
|
|
- name: Push Container
|
|
run: docker push "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest"
|