Skip to content

Build and publish image to Github Packages #10

Build and publish image to Github Packages

Build and publish image to Github Packages #10

Workflow file for this run

---
name: Build and publish image to Github Packages
on:
release:
types:
- published
workflow_dispatch:
jobs:
publish-pantheon-wp-deploy-image:
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{raw}}
type=semver,pattern={{major}}
type=semver,pattern={{version}}
type=sha
type=raw,enable=true,value=latest
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: image
push: true
tags: ${{ steps.meta.outputs.tags }}