Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Add note before archiving the project. (#99) #217

Add note before archiving the project. (#99)

Add note before archiving the project. (#99) #217

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- ".github/renovate.json5"
- ".github/renovate/**.json5"
env:
REGISTRY_IMAGE: ghcr.io/ullbergm/hajimari
jobs:
build:
runs-on: ubuntu-22.04
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
id: prep
run: |
echo ::set-output name=version::${GITHUB_REF##*/}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
install: true
version: latest
driver-opts: image=moby/buildkit:master
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: |
${{ env.REGISTRY_IMAGE }}:${{ steps.prep.outputs.version }}