-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add a reusable workflow to release with Dockerfile
- Loading branch information
1 parent
0b8dda5
commit 25e9821
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
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 | ||
secrets: | ||
GH_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: ${{ vars.DOCKERHUB_USERNAME }} | ||
dockerfile: Dockerfile | ||
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 }} |
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