Skip to content

fix: create data dir on build #6

fix: create data dir on build

fix: create data dir on build #6

Workflow file for this run

name: Recordings
on:
push:
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 Docker image
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/recordings:latest
- name: Redeploy
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=recordings -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Clean up old images
uses: actions/delete-package-versions@v5
with:
package-name: 'leaphy-robotics/recordings'
package-type: 'container'
min-versions-to-keep: 5
delete-only-untagged-versions: 'true'