use github container registry

This commit is contained in:
Vladislav Yarmak 2024-02-11 21:17:09 +02:00
parent 85e5310cdd
commit 954b9af5b2
2 changed files with 15 additions and 5 deletions

View File

@ -5,9 +5,18 @@ on:
tags: tags:
- 'v*.*.*' - 'v*.*.*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
docker: build-and-push-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps: steps:
- -
name: Checkout name: Checkout
@ -30,7 +39,7 @@ jobs:
with: with:
# list of Docker images to use as base name for tags # list of Docker images to use as base name for tags
images: | images: |
${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes # generate Docker tags based on the following events/attributes
tags: | tags: |
type=semver,pattern={{version}} type=semver,pattern={{version}}
@ -47,8 +56,9 @@ jobs:
name: Login to DockerHub name: Login to DockerHub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} registry: ${{ env.REGISTRY }}
password: ${{ secrets.DOCKERHUB_TOKEN }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- -
name: Build and push name: Build and push
id: docker_build id: docker_build

View File

@ -44,7 +44,7 @@ docker run -d \
-p 8080:8080 \ -p 8080:8080 \
--restart unless-stopped \ --restart unless-stopped \
--name dumbproxy \ --name dumbproxy \
yarmak/dumbproxy ghcr.io/senseunit/dumbproxy
``` ```
#### Snap Store #### Snap Store