Some checks failed
Build a docker image for node-jellyfin-role-ot / build-docker-image (push) Failing after 14s
19 lines
578 B
YAML
19 lines
578 B
YAML
name: Build a docker image for node-jellyfin-role-ot
|
|
run-name: ${{ gitea.actor }} is building an image
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-docker-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
|
with:
|
|
registry: ${{ secrets.REGISTRY }}
|
|
username: ${{ secrets.USER }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
- name: use build script
|
|
run: ./dockerbuild.sh
|