Skip to content

Use native HLS in more situations #40

Use native HLS in more situations

Use native HLS in more situations #40

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- android-fix-wip
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: 'Production'
steps:
- uses: actions/checkout@v2
- name: Login via Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Docker login to ACR
uses: azure/docker-login@v1
with:
login-server: ${{ secrets.REGISTRY_LOGIN_SERVER }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
run: |
docker build . -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/kamera
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/kamera
- name: Azure logout
run: |
az logout