👷 Added pipe #1
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: Docker Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
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/${{ github.repository_owner }}/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/${{ github.repository_owner }}/openmediaserver:latest |