chore(deps): bump requests from 2.32.0 to 2.32.2 (#33) #103
This file contains 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 | |
on: | |
push: | |
# Publish `master` as Docker `latest` image. | |
branches: | |
- master | |
schedule: | |
- cron: '0 8 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: Dockerfile | |
context: . | |
push: true | |
tags: ghcr.io/djoamersfoort/corvee/corvee:latest | |
- name: Redeploy | |
run: | | |
curl https://portainer.djoamersfoort.nl/hooks/update-docker-image?stack=corvee_djoamersfoort_nl -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}" | |
- name: Clean up old images | |
uses: actions/delete-package-versions@v5 | |
with: | |
package-name: 'corvee/corvee' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
delete-only-untagged-versions: 'true' |