Skip to content

i/config: fix clients map #6

i/config: fix clients map

i/config: fix clients map #6

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Check out the repository
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Extract metadata (tags, labels) for Docker
id: metadata
uses: docker/metadata-action@v5
with:
images: ghcr.io/st3v3nmw/beacon-dns
-
name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
build-args: |
BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)
COMMIT_REF=${{ github.sha }}
VERSION=${{ github.ref_name }}
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ghcr.io/st3v3nmw/beacon-dns
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true