Skip to content

Merge pull request #51 from includable/dependabot/npm_and_yarn/axios-… #57

Merge pull request #51 from includable/dependabot/npm_and_yarn/axios-…

Merge pull request #51 from includable/dependabot/npm_and_yarn/axios-… #57

Workflow file for this run

name: Push Docker images
on:
push:
branches:
- master
env:
REGISTRY: ghcr.io
IMAGE_NAME: includable/craftup-craft
jobs:
push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: includable
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: ./lib/docker/craft
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}