Skip to content

docs: remove python debugging stuff, pulling into a future blog post #61

docs: remove python debugging stuff, pulling into a future blog post

docs: remove python debugging stuff, pulling into a future blog post #61

Workflow file for this run

name: build & push docker image
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
-
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
uses: docker/login-action@v2
with:
username: ${{ github.actor }}
# gh secret set DOCKERHUB_TOKEN
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
push: true
platforms: linux/arm64
tags: ${{ github.repository }}:latest
-
name: Update repo description
uses: peter-evans/dockerhub-description@v3.4.2
with:
username: ${{ github.actor }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
short-description: ${{ github.event.repository.description }}