chore: build separate prod/test images #17
Workflow file for this run
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: | |
tags: | |
- v* | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker Login | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push PROD Docker image | |
uses: docker/[email protected] | |
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/[email protected] | |
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: Clean up old images | |
uses: actions/delete-package-versions@v4 | |
with: | |
package-name: 'leaphy-webbased-backend/leaphy-webbased-backend' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
delete-only-untagged-versions: 'true' |