Skip to content

v0.2.1 - SOAuth Integration #7

v0.2.1 - SOAuth Integration

v0.2.1 - SOAuth Integration #7

Workflow file for this run

name: Build and Release Docker Container 🐳
on:
release:
types: [published]
jobs:
release-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push ➡️
uses: docker/build-push-action@v6
with:
file: ./Dockerfile
push: true
tags: simonsobs/tilemaker:${{ github.event.release.tag_name }}