Skip to content

added the ability to remove videos from watch history #63

added the ability to remove videos from watch history

added the ability to remove videos from watch history #63

Workflow file for this run

name: Build amd64 image
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build and push Docker image to Docker Hub
run: |
docker-compose build
docker tag liberatube:latest docker.io/golddominik893/liberatube:latest
docker push docker.io/golddominik893/liberatube:latest