Skip to content

ci: build and push an image to GitHub container registry (#3) #10

ci: build and push an image to GitHub container registry (#3)

ci: build and push an image to GitHub container registry (#3) #10

Workflow file for this run

name: build docker image
on:
push:
# branches:
# - master
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/[email protected]
- name: build and push image
uses: mr-smithers-excellent/docker-build-push@v6
with:
image: errbot
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}