ci: fox inputs for release-with-docker #2
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: Automatic release with Dockerfile | ||
# Use this one for default pre-commit pre-installed tools and a standard dockerfile | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_call: | ||
inputs: | ||
image_name: | ||
type: string | ||
dockerhub_username: | ||
required: true | ||
type: string | ||
dockerfile: | ||
type: string | ||
default: Dockerfile | ||
context: | ||
type: string | ||
default: . | ||
secrets: | ||
GH_TOKEN: | ||
required: true | ||
dockerhub_token: | ||
required: true | ||
jobs: | ||
pre-commit: | ||
uses: geokrety/geokrety-gha-workflows/.github/workflows/pre-commit.yml@main | ||
docker: | ||
needs: pre-commit | ||
uses: geokrety/geokrety-gha-workflows/.github/workflows/docker-build.yml@main | ||
with: | ||
image_name: ${{ inputs.image_name }} | ||
dockerhub_username: ${{ inputs.dockerhub_username }} | ||
dockerhub_token: ${{ secrets.dockerhub_token }} | ||
Check failure on line 37 in .github/workflows/release-with-docker.yml GitHub Actions / Automatic release with DockerfileInvalid workflow file
|
||
dockerfile: ${{ inputs.dockerfile }} | ||
context: ${{ inputs.context }} | ||
secrets: | ||
dockerhub_token: ${{ secrets.dockerhub_token }} | ||
build-release: | ||
uses: geokrety/geokrety-gha-workflows/.github/workflows/semantic-release.yml@main | ||
needs: docker | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} |