Skip to content

Merge pull request #14 from VillSource/main #1

Merge pull request #14 from VillSource/main

Merge pull request #14 from VillSource/main #1

Workflow file for this run

name: Publish Image to GHCR
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: |
docker build ./Src/Presentation/ArticleService/ --tag ghcr.io/untitlecms/user-information-service:v0
docker push ghcr.io/untitlecms/user-information-service:v0