Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
{
customType: 'regex',
managerFilePatterns: [
'README.md$/',
'/^README.md$/',
],
matchStrings: [
'\\*\\s+\\`(?<currentValue>.+?)\\`\\n',
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Update Docker Hub description

on:
push:
# branches: [ main ]
# paths: [ README.md ]
branches: [ main ]
paths: [ README.md ]

jobs:
update:
docker-hub-description:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
Expand All @@ -15,7 +15,7 @@ jobs:
- name: Update DockerHub description
uses: peter-evans/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: earthbuild/dind
short-description: The `dind` image is designed for EarthBuild targets
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
version: v0.8.15
- name: Log in to container registries (non fork only)
run: |-
docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_TOKEN }}"
docker login --username "${{ vars.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_TOKEN }}"
docker login ghcr.io --username ${{ github.actor }} --password "${{ secrets.GITHUB_TOKEN }}"
if: github.event.pull_request.head.repo.full_name == github.repository
- name: Build & Push image
Expand Down