Skip to content

Commit

Permalink
Correct github.ref in GitHub action (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Feb 27, 2020
1 parent ab280e8 commit e52c0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/webviz-subsurface.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
popd
- name: Update Docker Hub example image
if: github.ref == 'master' && matrix.python-version == '3.6'
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.6'
run: |
echo ${{ secrets.dockerhub_webviz_token }} | docker login --username webviz --password-stdin
docker push webviz/example_subsurface_image:equinor-theme
Expand All @@ -91,7 +91,7 @@ jobs:
twine upload dist/*
- name: Update GitHub pages
if: github.ref == 'master' && matrix.python-version == '3.6'
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.6'
run: |
cp -R ./webviz-config/docs/_build ../_build
Expand Down

0 comments on commit e52c0c7

Please sign in to comment.