We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0044ab7 commit 57be270Copy full SHA for 57be270
.github/workflows/docker-image.yml
@@ -1,3 +1,4 @@
1
+
2
name: Build and Push Docker Image
3
4
on:
@@ -6,14 +7,16 @@ on:
6
7
- release/*
8
- bugfix/*
9
- hotfix/*
10
+ - develop # TODO: troubleshooting
11
release:
12
types: [published]
13
14
jobs:
- build:
15
+ docker_image:
16
runs-on: ubuntu-latest
17
steps:
- - uses: actions/checkout@v2
18
+ - name: Checkout Workspace
19
+ uses: actions/checkout@v2
20
21
- uses: actions/download-artifact@v2
22
with:
.github/workflows/python-publish.yml
@@ -18,7 +18,7 @@ on:
- deploy:
+ upload_pypi:
23
24
0 commit comments