diff --git a/.github/workflows/docker-deploy.yml b/.github/workflows/docker-deploy.yml index 6d7a4c2d..db055ed2 100644 --- a/.github/workflows/docker-deploy.yml +++ b/.github/workflows/docker-deploy.yml @@ -12,11 +12,11 @@ jobs: - name: Set deploy name to master if: github.ref == 'refs/heads/master' run: | - echo "DEPLOY_NAME=gollumwiki/gollum:master" + echo "DEPLOY_NAME=gollumwiki/gollum:master" >> $GITHUB_ENV - name: Set deploy name to release version if: startsWith(github.ref, 'refs/tags/') run: | - echo "DEPLOY_NAME=gollumwiki/gollum:${{ github.ref_name }}" + echo "DEPLOY_NAME=gollumwiki/gollum:${{ github.ref_name }}" >> $GITHUB_ENV - name: Check Out Repo uses: actions/checkout@v2 - name: Login