Skip to content

fix: update delivery workflow #2

fix: update delivery workflow

fix: update delivery workflow #2

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 }}

Check failure on line 34 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / cd

Invalid workflow file

The workflow is not valid. .github/workflows/cd.yml (Line: 34, Col: 13): A mapping was not expected
PAT: ${{ secrets.GITHUB_TOKEN }}