Skip to content

Commit 43090d2

Browse files
Merge pull request #740 from martin-schulze-vireso/feature/publish_to_github_container_registry
Publish to GitHub container registry
2 parents 60abfaf + c0c206e commit 43090d2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/release_dockerhub.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ jobs:
2929
username: ${{ secrets.DOCKER_USERNAME }}
3030
password: ${{ secrets.DOCKER_PASSWORD }}
3131

32+
- name: Log in to the GitHub Container registry
33+
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
34+
with:
35+
registry: ghcr.io
36+
username: ${{ github.actor }}
37+
password: ${{ secrets.GITHUB_TOKEN }}
38+
3239
- name: Set up Docker Buildx
3340
id: buildx
3441
uses: docker/setup-buildx-action@v1

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The format is based on [Keep a Changelog][kac] and this project adheres to
1919
* test coverage in CI (#718)
2020
* Support for [rush](https://github.com/shenwei356/rush) as alternative to GNU parallel (#729)
2121
* add `bats_pipe` helper function for `run` that executes `\|` as pipes (#663)
22+
* publish docker images to ghcr.io (additionally to Dockerhub) (#740)
2223

2324
### Documentation
2425

0 commit comments

Comments
 (0)