Skip to content

ci: upgrade GitHub Actions #71

ci: upgrade GitHub Actions

ci: upgrade GitHub Actions #71

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- "**"
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Replace draft status
run: sed -i 's/"ZZ-DRAFT"/"ZZ-BASIC"/g' config.js meta/config.js relation/config.js
- name: Remove 'issue-summary' section
run: sed -i '/issue-summary/d' index.html meta/index.html relation/index.html
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: zazuko/action-docker-meta@main
id: docker_meta
with:
images: ghcr.io/zazuko/cube-link
include-pipeline-id: true
- name: Build and push Docker images
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}