Skip to content

Commit 57be270

Browse files
committed
troubleshoot workflows
1 parent 0044ab7 commit 57be270

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: Build and Push Docker Image
23

34
on:
@@ -6,14 +7,16 @@ on:
67
- release/*
78
- bugfix/*
89
- hotfix/*
10+
- develop # TODO: troubleshooting
911
release:
1012
types: [published]
1113

1214
jobs:
13-
build:
15+
docker_image:
1416
runs-on: ubuntu-latest
1517
steps:
16-
- uses: actions/checkout@v2
18+
- name: Checkout Workspace
19+
uses: actions/checkout@v2
1720

1821
- uses: actions/download-artifact@v2
1922
with:

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
types: [published]
1919

2020
jobs:
21-
deploy:
21+
upload_pypi:
2222

2323
runs-on: ubuntu-latest
2424

0 commit comments

Comments
 (0)