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 e28baad + b159714 commit c9392e2Copy full SHA for c9392e2
.github/workflows/main.yml
@@ -7,7 +7,7 @@ on:
7
branches: [master]
8
types: [synchronize, opened, reopened, ready_for_review]
9
release:
10
- types: [created]
+ types: [created, edited]
11
12
env:
13
ORG: opendatacube
@@ -88,7 +88,7 @@ jobs:
88
# if not use a pseudo tag based on current tag,
89
# number of commits since last tag and git hash
90
- name: Push to DockerHub (master branch or tagged release only)
91
- if: github.ref == 'refs/heads/master' || github.ref == 'refs/tags/'
+ if: github.ref == 'refs/heads/master' || github.event_name == 'release'
92
run: |
93
# figure out extra tag
94
git fetch --prune --unshallow 2> /dev/null || true
0 commit comments