Skip to content

new channel names

new channel names #42

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ c3lingo ]
pull_request:
branches: [ c3lingo ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag c3lingo/mumble-web:latest --tag c3lingo/mumble-web:$(date +%s)
- name: Log into registry
run: echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
- name: Push to Docker Hub
run: docker push c3lingo/mumble-web:latest