Skip to content

Merge pull request #53 from joshuar/release-please--branches--main #6

Merge pull request #53 from joshuar/release-please--branches--main

Merge pull request #53 from joshuar/release-please--branches--main #6

# Copyright (c) 2023 Joshua Rich <[email protected]>

Check failure on line 1 in .github/workflows/release-docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-docker.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: outputs
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
name: Create and publish a Docker image
on:
push:
branches: ['release']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
context:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
id: build
uses: cloudposse/github-action-docker-build-push@main
with:
registry: ${{ env.REGISTRY }}
organization: "${{ github.event.repository.owner.login }}"
repository: "${{ github.event.repository.name }}"
login: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
platforms: linux/amd64
outputs:
image: ${{ steps.build.outputs.image }}
tag: ${{ steps.build.outputs.tag }}