Skip to content

pipeline

pipeline #28

Workflow file for this run

name: pipeline
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
scratch-empty:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: src/scratch/empty
push: true
tags: ghcr.io/${{ github.repository_owner }}/scratch/empty:latest