Skip to content

Flesh out websockets a little more #9

Flesh out websockets a little more

Flesh out websockets a little more #9

Workflow file for this run

name: Build playout
on:
push:
branches:
- main
jobs:
build:
name: Build and push Docker images
runs-on: ubuntu-latest
steps:
-
name: Checkout main branch
uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Build docker
id: docker_build
uses: docker/build-push-action@v2
with:
tags: frikanalen/playout-v2:latest
push: true
pull: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache