Update README.md #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish a Docker image to ghcr.io and Docker Hub | |
on: | |
# publish on releases (tagged as "x.y.z" - "v" prefix is removed) | |
release: | |
types: [ published ] | |
# publish on pushes to the main branch (tagged as "master") | |
push: | |
branches: | |
- master | |
# pull_request: # debug | |
jobs: | |
docker_publish: | |
runs-on: "ubuntu-20.04" | |
steps: | |
- uses: actions/[email protected] | |
- name: Build and publish a Docker image for ${{ github.repository }} | |
uses: macbre/push-to-ghcr@master | |
with: | |
image_name: ${{ github.repository }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_io_token: ${{ secrets.DOCKER_IO_ACCESS_TOKEN }} |