Skip to content

Add publish github action and bump python version in Dockerfile #7

Add publish github action and bump python version in Dockerfile

Add publish github action and bump python version in Dockerfile #7

Workflow file for this run

name: publish
on:
push:
tags:
- 'v1.*'
- 'gh-action-test-*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: "{{defaultContext}}"
file: ./Dockerfile
push: true
tags: ghcr.io/${{github.repository}}:${{github.ref_name}}