We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eeacc3 commit e893d73Copy full SHA for e893d73
.github/workflows/main.yml
@@ -44,7 +44,7 @@ jobs:
44
name: Publish dev branch to Docker Hub
45
needs: test
46
runs-on: ubuntu-latest
47
- if: github.ref == 'refs/heads/dev'
+ if: github.ref == 'refs/heads/dev' && github.repository_owner == 'nightscout'
48
env:
49
DOCKER_IMAGE: nightscout/cgm-remote-monitor
50
steps:
@@ -68,7 +68,7 @@ jobs:
68
name: Publish master branch to Docker Hub
69
70
71
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/master' && github.repository_owner == 'nightscout'
72
73
74
0 commit comments