This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
feat: exportbutton serial monitor tot csv file (#101) #61
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@v3 | |
- 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 | |
if: github.ref_type == 'tag' | |
uses: docker/[email protected] | |
with: | |
file: Dockerfile | |
context: . | |
push: true | |
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:prod | |
- name: Build and push TEST Docker image | |
if: github.ref_type == 'branch' | |
uses: docker/[email protected] | |
with: | |
file: Dockerfile | |
context: . | |
push: true | |
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:main | |
- name: Clean up old images | |
uses: actions/delete-package-versions@v4 | |
with: | |
package-name: 'leaphy-webbased/leaphy-webbased' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
delete-only-untagged-versions: 'true' |