chore(deps): bump pillow from 12.1.1 to 12.2.0 (#184) #331
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: Docker | |
| permissions: | |
| contents: read | |
| packages: write | |
| actions: read | |
| on: | |
| push: | |
| # Publish `djo` as Docker `latest` image. | |
| branches: | |
| - djo | |
| schedule: | |
| - cron: '0 22 1 * *' | |
| workflow_dispatch: {} | |
| jobs: | |
| # Push image to GitHub Packages. | |
| # See also https://docs.docker.com/docker-hub/builds/ | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Docker Login | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| file: deploy/Dockerfile | |
| context: . | |
| push: true | |
| tags: ghcr.io/djoamersfoort/ledenadministratie/ledenadministratie:latest | |
| - name: Redeploy | |
| run: | | |
| curl https://portainer.djoamersfoort.nl/hooks/update-docker-image?stack=leden_djoamersfoort_nl -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}" | |
| - name: Clean up old images | |
| uses: actions/delete-package-versions@v5 | |
| with: | |
| package-name: 'ledenadministratie/ledenadministratie' | |
| package-type: 'container' | |
| min-versions-to-keep: 5 | |
| delete-only-untagged-versions: 'true' |