Skip to content

Commit

Permalink
Use blank VERSION for stable (#1359)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholastmosher committed Aug 3, 2021
1 parent e4c4061 commit 8b35713
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
installer_version:
required: true
description: "The version of Fluvio to download with install.sh"
default: "stable"
default: ""

env:
VERBOSE: ${{ github.events.input.verbose }}
Expand Down Expand Up @@ -60,8 +60,10 @@ jobs:
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
- name: Install fluvio-package
run: |
export VERSION=${{ github.event.inputs.installer_version || 'stable' }}
echo "VERSION=$VERSION"
if [ -n "${{ github.event.inputs.installer_version }}" ]; then
export VERSION=${{ github.event.inputs.installer_version }}
echo "VERSION=$VERSION"
fi
curl -fsS https://packages.fluvio.io/v1/install.sh | bash
${HOME}/.fluvio/bin/fluvio install fluvio-package
Expand Down

0 comments on commit 8b35713

Please sign in to comment.