Skip to content

Bump sphinx-rtd-theme from 1.2.2 to 1.3.0 #110

Bump sphinx-rtd-theme from 1.2.2 to 1.3.0

Bump sphinx-rtd-theme from 1.2.2 to 1.3.0 #110

Workflow file for this run

name: Build and push docker
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
env:
HAVE_DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN != '' }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
if: ${{ env.HAVE_DOCKERHUB_TOKEN == 'true' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
if: ${{ env.HAVE_DOCKERHUB_TOKEN == 'true' }}
uses: docker/build-push-action@v3
with:
push: true
tags: user/app:latest