Skip to content

Merge branch 'main' of https://github.com/djoamersfoort/media #8

Merge branch 'main' of https://github.com/djoamersfoort/media

Merge branch 'main' of https://github.com/djoamersfoort/media #8

Workflow file for this run

name: Client
on:
push:
branches:
- main
workflow_dispatch: {}
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker Login
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
file: client/Dockerfile
context: client
push: true
tags: ghcr.io/djoamersfoort/media/client:latest
build-args: |
oauth_server = ${OAUTH_SERVER}
client_id = ${CLIENT_ID}
api_base = ${API_BASE}
redirect_url = ${REDIRECT_URL}