Skip to content

Merge branch 'main' of github.com:pourmand1376/Jupyter-Docker-Conda #6

Merge branch 'main' of github.com:pourmand1376/Jupyter-Docker-Conda

Merge branch 'main' of github.com:pourmand1376/Jupyter-Docker-Conda #6

name: Docker Image CI (Tag)
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Buildx
uses: docker/setup-buildx-action@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: amirpourmand/jupyter-docker-conda
- name: Login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}