We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d627b commit c40ee1cCopy full SHA for c40ee1c
.github/workflows/release.yml
@@ -10,6 +10,7 @@ on:
10
description: "Is the release a prerelease ?"
11
required: false
12
default: false
13
+ type: boolean
14
15
jobs:
16
release-manager:
@@ -50,7 +51,8 @@ jobs:
50
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
with:
54
+ target_commitish: ${{ github.sha }}
55
tag_name: ${{ github.event.inputs.tag }}
- release_name: Release ${{ github.event.inputs.tag }}
56
+ name: Release ${{ github.event.inputs.tag }}
57
prerelease: ${{ github.event.inputs.prerelease }}
58
Dockerfile
@@ -2,7 +2,7 @@ FROM python:3.10
2
3
EXPOSE 8000
4
5
-ENV POETRY_VERSION=1.1.11
+ENV POETRY_VERSION=1.1.13
6
7
ENV PATH=$PATH:/root/.poetry/bin
8
0 commit comments