Skip to content

Initial commit.

Initial commit. #1

on:
push:
branches:
- master
paths:
- 'Dockerfile'
schedule:
- cron: '0 8 * * 0'
workflow_dispatch:
name: Publish Docker image
jobs:
publish_docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: ${{ github.repository }}/builder:latest
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io