Skip to content
This repository has been archived by the owner on Feb 25, 2023. It is now read-only.

Commit

Permalink
Docker on Release (#31)
Browse files Browse the repository at this point in the history
* Update README.md

* adding file directory to .gitignore

* cleanup file handling

* version number in docker image

* typo in Dockerfile

* version number in Dockerfile

* correct argument for docker buildflag

* missing quote

* update version vars

* Dockerfile updates

* fix release workflow
  • Loading branch information
mattkasun authored Nov 11, 2021
1 parent ab735e6 commit 404d5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
run: |
if [[ -n "${{ github.event.inputs.tag }}" ]]; then
TAG=${{ github.event.inputs.tag }}
elif [[ "${{ github.event.name }}" == 'release' ]]; then
TAG="${{ github.ref.name }}"
elif [[ "$GITHUB_EVENT_NAME" == 'release' ]]; then
TAG="$GITHUB_REF_NAME"
else
TAG="${{ github.base_ref }}"
fi
Expand Down

0 comments on commit 404d5f0

Please sign in to comment.