Skip to content

Commit

Permalink
cleanup and release testing
Browse files Browse the repository at this point in the history
  • Loading branch information
coreybutler committed Dec 28, 2024
1 parent 276487e commit ee4ad3b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,15 @@ jobs:
- name: Install QuikGo
run: |
if !(go list -m github.com/quikdev/go/cmd/qgo@v${{ env.QUIKGO_VERSION }}); then
go install github.com/quikdev/go/cmd/qgo@v${{ env.QUIKGO_VERSION }}
else
if (-not (go list -m github.com/quikdev/go/cmd/qgo@v${{ env.QUIKGO_VERSION }})) {
if (-not (go list -m github.com/quikdev/go/cmd/qgo@v${{ env.QUIKGO_VERSION }})) {
go install github.com/quikdev/go/cmd/qgo@v${{ env.QUIKGO_VERSION }}
} else {
echo "QuikGo version ${{ env.QUIKGO_VERSION }} already installed."
}
} else {
echo "QuikGo version ${{ env.QUIKGO_VERSION }} already installed."
fi
}
- name: Confirm QuikGo Installation
run: qgo --version
Expand Down

0 comments on commit ee4ad3b

Please sign in to comment.