name: Publish Dotclear stable image to Docker Hub on: release: types: [published] env: IMAGE_NAME: jcpd/docker-dotclear DOTCLEAR_CANAL: stable jobs: push_to_docker_hub: name: Push Docker image to registry runs-on: ubuntu-latest permissions: packages: write contents: read attestations: write id-token: write steps: - name: Check out the repo uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Build and push images uses: docker/build-push-action@v6 with: context: . sbom: true push: true tags: | ${{ env.IMAGE_NAME }}:${{ github.event.release.name }} ${{ env.IMAGE_NAME }}:latest build-args: CANAL=${{ env.DOTCLEAR_CANAL }} platforms: linux/386,linux/amd64,linux/arm/V6 - name: Send Telegram Message Ok uses: appleboy/telegram-action@master env: GITHUB_CONTEXT: ${{toJSON(github)}} with: to: ${{ secrets.TELEGRAM_ID }} token: ${{ secrets.TELEGRAM_TOKEN }} format: markdown message: | Image successfully generated __Repository:__ ${{github.repository}} __Release:__ ${{ github.event.release.name }} __Image:__ ${{ env.IMAGE_NAME }} __Canal:__ ${{ env.DOTCLEAR_CANAL }}