We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0de333 commit 22b7f4eCopy full SHA for 22b7f4e
.github/workflows/check.yml
@@ -15,7 +15,7 @@ jobs:
15
token: ${{ secrets.PAT }}
16
- name: Get the latest version of Lens
17
run: |
18
- curl -s https://api.github.com/repos/lensapp/lens/releases/latest | jq -r '.tag_name[1:]' > version
+ curl -s https://api.github.com/repos/lensapp/lens/releases/latest | jq -r 'select(.prerelease == false) | .tag_name[1:]' > version
19
export LENS_VERSION=$(cat version)
20
echo "LENS_VERSION=$LENS_VERSION" >> $GITHUB_ENV
21
- name: Add & Commit
0 commit comments