Skip to content

build(deps): bump github.com/rhysd/actionlint from 1.7.1 to 1.7.2 #107

build(deps): bump github.com/rhysd/actionlint from 1.7.1 to 1.7.2

build(deps): bump github.com/rhysd/actionlint from 1.7.1 to 1.7.2 #107

Workflow file for this run

name: Create and publish a Docker image
on:
release:
types: [published]
# publish on pushes to the main branch (image tagged as "latest")
push:
branches:
- "main"
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
if: github.actor != 'dependabot[bot]' || github.actor != 'dependabot-preview[bot]'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}