Skip to content

Commit

Permalink
Add workflow for dev container
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkumar committed Nov 18, 2023
1 parent 5b66e87 commit e54cd08
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: docker container

on:
push:
branches:
- '**'
tags:
- v*
pull_request:
branches:
- master
tags:
- v*

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow

- name: Setup docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: medbha
password: ${{ secrets.DOCKER_TOKEN }}

- name: Step to get tag name
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT

- name: Build and push
uses: docker/build-push-action@v3
if: ${{ startsWith(github.ref, 'refs/heads') && github.ref == 'refs/heads/master' }}
with:
context: ci
file: Dockerfile.ubuntu
push: true
tags: hiddensymmetries/simsopt_dev:latest

- name: Build for branches
uses: docker/build-push-action@v3
if: ${{ startsWith(github.ref, 'refs/heads') && github.ref != 'refs/heads/master' }}
with:
context: ci
file: Dockerfile.ubuntu
push: false
tags: hiddensymmetries/simsopt_dev:test

- name: Build and push for tag
uses: docker/build-push-action@v3
if: startsWith(github.event.ref, 'refs/tags/v')
with:
context: ci
file: Dockerfile.ubuntu
push: true
tags: "hiddensymmetries/simsopt_dev:${{steps.vars.outputs.tag}}"

0 comments on commit e54cd08

Please sign in to comment.