Add GHCR support
This commit is contained in:
parent
6d059ce3b8
commit
e75e147be1
1 changed files with 12 additions and 3 deletions
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
|
@ -89,9 +89,18 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
|
||||
tags: phntxx/dashboard:latest
|
||||
tags: |
|
||||
phntxx/dashboard:latest
|
||||
ghcr.io/phntxx/dashboard:latest
|
||||
|
|
Loading…
Reference in a new issue