Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Push to Docker Hub
name: Build and Push to GHCR

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
- v**

jobs:
# Build and push containers to Docker Hub
# Build and push containers to GitHub Container Registry
docker:
runs-on: ubuntu-latest

Expand All @@ -18,16 +18,17 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: dgarciabriseno/hv-coordinator
images: ghcr.io/helioviewer-project/coordinator
# generate Docker tags based on the tagged release
tags: type=semver,pattern={{version}}
- name: Build and push Docker images
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ API is meant to run in parallel with Helioviewer.
## Usage
Running with docker:
```
docker run --rm -t dgarciabriseno/hv-coordinator
docker run --rm -t ghcr.io/helioviewer-project/coordinator
```

Running manually with python
Expand Down