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.
2 parents 8b4d1e8 + 57be270 commit dbe6dd9Copy full SHA for dbe6dd9
.github/workflows/docker-image.yml
@@ -1,19 +1,22 @@
1
-name: Build, Push Docker Image
+
2
+name: Build and Push Docker Image
3
4
on:
5
push:
6
branches:
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