Publish Docker images #279
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: | |
| push: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Versions 9.6 and 10, 12, 13 are deprecated | |
| versions: [15, 16] | |
| env: | |
| repo: "govpf/postgres" | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/[email protected] | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/[email protected] | |
| - | |
| name: Login to DockerHub | |
| uses: docker/[email protected] | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| - | |
| name: Build and push | |
| uses: docker/[email protected] | |
| with: | |
| context: . | |
| file: ./${{ matrix.versions }}/Dockerfile | |
| platforms: linux/amd64 | |
| pull: true | |
| push: true | |
| tags: | | |
| ${{ env.repo }}:${{ matrix.versions }} | |
| - name: Update repo description | |
| uses: peter-evans/[email protected] | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: "${{ env.repo }}" |