Setup CI to build the documentation to a Docker image (#208)

* Add Docker deployment

* Remove the manually built version

* Fix the dockerfile
This commit is contained in:
TheFrenchGhosty 2022-03-12 22:09:51 +00:00 committed by GitHub
parent a1902ff41d
commit a155b70280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
66 changed files with 42 additions and 26584 deletions

35
.github/workflows/container-release.yml vendored Normal file
View file

@ -0,0 +1,35 @@
---
name: Build and release container
on:
push:
branches:
- "master"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to registry
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: quay.io/invidious/docs.invidious.io:latest