Test media track stream processor add wasm opus encoder to support Safari for realz #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Website to Docker image | |
on: | |
pull_request: | |
paths: | |
- 'leptos-website/**' | |
- 'docker/Dockerfile.website' | |
push: | |
branches: | |
- main | |
paths: | |
- 'leptos-website/**' | |
- 'docker/Dockerfile.website' | |
jobs: | |
build_and_push: | |
name: Build and Push Website Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
id: checkout | |
- name: Log in to Docker Hub | |
if: github.event_name == 'push' | |
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract SHA | |
id: extract_sha | |
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA::8})" | |
- name: Extract branch name | |
id: extract_branch | |
run: echo "::set-output name=branch::${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" | |
- name: Build and push Website Docker image | |
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 | |
with: | |
context: . | |
file: docker/Dockerfile.website | |
push: ${{ github.event_name == 'push' }} | |
tags: | | |
securityunion/video-call-rs-website:${{ steps.extract_branch.outputs.branch }}-${{ steps.extract_sha.outputs.sha8 }} | |
securityunion/video-call-rs-website:latest |