Skip to content

Bump coveralls from 3.3.1 to 4.0.0 (#460) #39

Bump coveralls from 3.3.1 to 4.0.0 (#460)

Bump coveralls from 3.3.1 to 4.0.0 (#460) #39

Workflow file for this run

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/checkout@v4.1.5
- 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 }}