chore: dep updates (#8) #54
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: | |
- main | |
schedule: | |
- cron: '0 8 1 * *' | |
workflow_dispatch: {} | |
jobs: | |
# Push image to GitHub Packages. | |
# See also https://docs.docker.com/docker-hub/builds/ | |
push: | |
# Ensure test job passes before pushing image. | |
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/djo-telegram-bot-new/djo-telegram-bot-new:latest | |
- name: Redeploy | |
run: | | |
curl https://portainer.djoamersfoort.nl/hooks/update-docker-image?stack=djobot -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}" | |
- name: Clean up old images | |
uses: actions/delete-package-versions@v5 | |
with: | |
package-name: 'djo-telegram-bot-new/djo-telegram-bot-new' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
delete-only-untagged-versions: 'true' |