peertube/.forgejo/workflows/docker.yml
Samuel Philipp 5e5a17b464
Some checks failed
Build and Push Docker image / Build and Push Docker image (push) Failing after 4s
updated workflow
2023-09-06 23:46:16 +02:00

33 lines
839 B
YAML

name: Build and Push Docker image
on:
push:
branches:
- main
jobs:
docker:
name: Build and Push Docker image
runs-on: docker
steps:
- name: Set up node
uses: actions/setup-node@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to cr.sp-codes.de
uses: docker/login-action@v2
with:
registry: cr.sp-codes.de
username: ${{ secrets.CR_USERNAME }}
password: ${{ secrets.CR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: |
spcodes/peertube:latest
cr.sp-codes.de/sp-codes/peertube:latest