Skip to content

cfssl docker

cfssl docker #2

Workflow file for this run

name: cfssl docker
on:
workflow_dispatch:
push:
branches:
- "master"
tags:
- "v*"
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
include:
# github container registry
- registry: "ghcr.io"
username: ${{ github.actor }}
password_secret: GITHUB_TOKEN
image: ghcr.io/khulnasoft-lab/cfssl
# docker test publish, todo: switch to service account
- registry: ""
username: gitworkflows
password_secret: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 27 in .github/workflows/docker-builds.yml

View workflow run for this annotation

GitHub Actions / cfssl docker

Invalid workflow file

The workflow is not valid. .github/workflows/docker-builds.yml (Line: 27, Col: 30): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.GITHUB_TOKEN
image: cfssl/cfssl
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Docker hub
uses: docker/login-action@v3
with:
registry: ${{ matrix.registry }}
username: ${{ matrix.username }}
password: ${{ secrets[matrix.password_secret] }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ matrix.image }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64,linux/s390x
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}