Skip to content

Commit

Permalink
ci: add docker hub description
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Jun 3, 2024
1 parent 8750d94 commit 9695146
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,19 @@ jobs:
cd docker && \
docker buildx build --push --platform linux/amd64,linux/arm64 --label IMAGE_URI=mbari/sdcat:$RELEASE_VERSION-cuda:12.4.1 -t mbari/sdcat-cuda:12.4.1-$RELEASE_VERSION -f Dockerfile.cuda12 . && \
docker buildx build --push --platform linux/amd64,linux/arm64 --label IMAGE_URI=mbari/sdcat:$RELEASE_VERSION -t mbari/sdcat:$RELEASE_VERSION -f Dockerfile .
push_readme_to_dockerhub:
runs-on: ubuntu-latest
name: Push README to Docker Hub
steps:
- name: git checkout
uses: actions/checkout@v2
- name: push README to Dockerhub
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKER_PASS: ${{ secrets.DOCKERHUB_TOKEN }}
with:
destination_container_repo: mbari/sdcat-cuda:12.4.1-$RELEASE_VERSION
provider: dockerhub
short_description: 'Sliced Detection and Clustering Analysis Toolkit 😊'
readme_file: 'README.md'

0 comments on commit 9695146

Please sign in to comment.