-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
85 additions
and
28 deletions.
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 |
---|---|---|
@@ -1,6 +1,21 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"packageRules": [ | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"automerge": true, | ||
"labels": [ | ||
"dependencies" | ||
] | ||
} | ||
], | ||
"extends": [ | ||
"config:base", | ||
":dependencyDashboard" | ||
"config:base" | ||
] | ||
} |
22 changes: 13 additions & 9 deletions
22
.github/workflows/gradle.yml → .github/workflows/coverage.yml
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
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 |
---|---|---|
@@ -1,23 +1,61 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: [ master ] | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
docker: | ||
name: Build and upload Docker image | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag rob93c/christmas-greeter:latest | ||
|
||
- name: Perform Docker login | ||
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | ||
|
||
- name: Upload the latest Docker image | ||
run: docker push rob93c/christmas-greeter:latest | ||
- name: Checkout code changes | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare Docker | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Access Docker | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Extract metadata | ||
id: metadata | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
rob93c/christmas-greeter | ||
tags: | | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
- name: Set Docker tags | ||
id: docker-tags | ||
run: | | ||
cleaned_tags=${{ steps.metadata.outputs.tags }} | ||
if [[ " ${{ steps.metadata.outputs.tags }} " =~ "christmas-greeter:latest" ]]; then | ||
cleaned_tags=("***/christmas-greeter:latest") | ||
fi | ||
echo "cleaned_tags=${cleaned_tags}" >> "$GITHUB_OUTPUT" | ||
- name: Upload Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.docker-tags.outputs.cleaned_tags }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
- name: Delete Docker tag | ||
if: github.event.pull_request.merged | ||
run: | | ||
tag_to_delete="pr-${{github.event.issue.number}}" | ||
docker rmi rob93c/christmas-greeter:$tag_to_delete | ||
echo "The tag $tag_to_delete has been deleted" |
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