Skip to content

Update base Docker image from python:3.11.4-slim-buster to python:3.1… #35

Update base Docker image from python:3.11.4-slim-buster to python:3.1…

Update base Docker image from python:3.11.4-slim-buster to python:3.1… #35

Workflow file for this run

name: "Create Release"
on:
push:
tags:
- 'v*'
jobs:
build:
name: "Create Release"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Create Release"
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: Auto-generate release notes
draft: true
prerelease: false