Build and publish a Docker image to ghcr.io #1
Workflow file for this run
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 | ||
on: | ||
# publish on releases, e.g. v2.1.13 (image tagged as "2.1.13" - "v" prefix is removed) | ||
release: | ||
types: [ published ] | ||
jobs: | ||
docker_publish: | ||
name: "Docker Publish" | ||
runs-on: "ubuntu-22.04" | ||
permissions: write-all | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
working-directory: ./cairo-proving-server | ||
Check failure on line 16 in .github/workflows/release_cairohtto.yml GitHub Actions / Build and publish a Docker image to ghcr.ioInvalid workflow file
|
||
- name: Build and publish a Docker image for cairohttp | ||
working-directory: ./cairo-proving-server | ||
uses: macbre/push-to-ghcr@master | ||
with: | ||
image_name: cairohttp # it will be lowercased internally | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |