Merge branch 'encode-filter' of JulianKniephoff/opencast-admin-interf… #996
This file contains 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 container image | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
container-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Log in to the container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }} | |
- name: Build and push images | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Add comment | |
if: github.event_name == 'pull_request_target' | |
uses: thollander/actions-comment-pull-request@v3 | |
with: | |
comment_tag: container-image | |
message: | | |
Use `docker` or `podman` to test this pull request locally. | |
Run test server using develop.opencast.org as backend: | |
``` | |
podman run --rm -it -p 127.0.0.1:3000:3000 ${{ steps.meta.outputs.tags }} | |
``` | |
Specify a different backend like stable.opencast.org: | |
``` | |
podman run --rm -it -p 127.0.0.1:3000:3000 -e PROXY_TARGET=https://stable.opencast.org ${{ steps.meta.outputs.tags }} | |
``` | |
It may take a few seconds for the interface to spin up. | |
It will then be available at http://127.0.0.1:3000. | |
For more options you can pass on to the proxy, take a look at the `README.md`. |