Skip to content

Added basic management interface #12

Added basic management interface

Added basic management interface #12

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build image
run: |
docker build -t ghcr.io/ether/etherpad-proxy:latest .
- name: Push image
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
docker push ghcr.io/ether/etherpad-proxy:latest