Skip to content

fix: update dockerfile #9

fix: update dockerfile

fix: update dockerfile #9

Workflow file for this run

name: cd
on:
push:
branches:
- cd
permissions:
packages: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/ADORSYS/kcoid4vci
tags: type=sha
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
USERNAME: ${{ github.repository_owner }}
PAT: ${{ secrets.GITHUB_TOKEN }}