Skip to content

Commit b90609a

Browse files
authored
Merge pull request #779 from doerfli/bugfix/docker-build
docker build fix
2 parents a7d98c1 + d1d6a58 commit b90609a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v6
18-
- run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u doerfli --password-stdin
18+
- run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u doerfli --password-stdin
1919
- uses: rlespinasse/github-slug-action@v2.x
20-
- run: docker build -f Dockerfile -t docker.pkg.github.com/doerfli/reeper/reeper:${{ env.GITHUB_REF_SLUG }} .
21-
- run: docker push docker.pkg.github.com/doerfli/reeper/reeper:${{ env.GITHUB_REF_SLUG }}
20+
- run: docker build -f Dockerfile -t ghcr.io/doerfli/reeper/reeper:${{ env.GITHUB_REF_SLUG }} .
21+
- run: docker push ghcr.io/doerfli/reeper/reeper:${{ env.GITHUB_REF_SLUG }}

0 commit comments

Comments
 (0)