Skip to content

chore(main): release 0.2.0 (#3) #1

chore(main): release 0.2.0 (#3)

chore(main): release 0.2.0 (#3) #1

Workflow file for this run

name: Publish Docker image
on:
push:
tags:
- "*"
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker cli image
uses: docker/build-push-action@v5
with:
context: .
file: ./cli.Dockerfile
push: true
tags: netmist/give-me-the-odds${{ github.ref_name }}
- name: Build and push Docker server image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: netmist/millennium-falcon${{ github.ref_name }}