Skip to content

chore(deps): bump pydantic-settings from 2.4.0 to 2.6.1 (#77) #53

chore(deps): bump pydantic-settings from 2.4.0 to 2.6.1 (#77)

chore(deps): bump pydantic-settings from 2.4.0 to 2.6.1 (#77) #53

Workflow file for this run

name: Docker
on:
push:
tags:
- v*
branches:
- main
workflow_dispatch: {}
jobs:
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 PROD Docker image
uses: docker/build-push-action@v5
if: github.ref_type == 'tag'
with:
file: deploy/Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased-backend/leaphy-webbased-backend:prod
- name: Build and push TEST Docker image
uses: docker/build-push-action@v5
if: github.ref_type == 'branch'
with:
file: deploy/Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased-backend/leaphy-webbased-backend:main
- name: Redeploy TEST
if: github.ref_type == 'branch'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased-backend-test -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Redeploy PROD
if: github.ref_type == 'tag'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased-backend -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Clean up old images
uses: actions/delete-package-versions@v5
with:
package-name: 'leaphy-webbased-backend/leaphy-webbased-backend'
package-type: 'container'
min-versions-to-keep: 5
delete-only-untagged-versions: 'true'