Publish Docker images #155
This file contains hidden or 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
| name: Publish Docker images | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| # strategy: | |
| # matrix: | |
| # versions: [6] | |
| env: | |
| repo: "govpf/dozzle" # Please don't forget to create the repo on Docker Hub | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.1.7 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3.3.0 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3.2.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| - name: Build and push | |
| uses: docker/build-push-action@v6.1.0 | |
| with: | |
| context: . | |
| # context: ./${{ matrix.versions }} | |
| file: ./Dockerfile | |
| # file: ./${{ matrix.versions }}/Dockerfile | |
| platforms: linux/amd64 | |
| pull: true | |
| push: true | |
| tags: | | |
| ${{ env.repo }}:latest | |
| # ${{ env.repo }}:${{ matrix.versions }} | |
| - name: Update repo description | |
| uses: peter-evans/dockerhub-description@v4.0.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: "${{ env.repo }}" |