Skip to content

Commit

Permalink
chore: build separate prod/test images
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoesbergen authored Apr 1, 2024
1 parent 5e0c117 commit 6d1ceee
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ on:
push:
tags:
- v*
branches:
- main
workflow_dispatch: {}

jobs:
push:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Docker Login
uses: docker/[email protected]
Expand All @@ -20,10 +22,28 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
- 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:latest
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'

0 comments on commit 6d1ceee

Please sign in to comment.