We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe6cd9 commit 88025c9Copy full SHA for 88025c9
.github/workflows/conda_cron.yaml
@@ -41,7 +41,8 @@ jobs:
41
working-directory: openfe_repo
42
run: |
43
REPO="${{ github.repository }}"
44
- VERSION=$(curl -s "https://api.github.com/repos/$REPO/releases/latest" | jq -r '.tag_name | ltrimstr("v")')
+ VERSION=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
45
+ "https://api.github.com/repos/$REPO/releases/latest" | jq -r '.tag_name | ltrimstr("v")')
46
echo $VERSION
47
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
48
0 commit comments