Skip to content

πŸ“ Create README.md #4

πŸ“ Create README.md

πŸ“ Create README.md #4

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
permissions:
packages: write
contents: read
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file ./OpenMediaServer/Dockerfile --tag ghcr.io/openmediastation/openmediaserver:latest
- name: Log in to GitHub Docker Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push Docker image to GitHub Packages
run: docker push ghcr.io/openmediastation/openmediaserver:latest