chorentoiersn #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JDTLS Milestone Release Checker | |
on: | |
# schedule: | |
# Runs daily at midnight UTC | |
# - cron: "0 0 * * *" | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
check-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Get latest milestone from Eclipse | |
id: get_latest | |
run: | | |
pip install requests | |
echo "latest_version=$(python ./get_latest.py)" >> $GITHUB_ENV | |
- name: Fetch Repository Releases and Check for Version 10.3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo "Fetching releases for repository..." | |
releases=$(curl -H "Authorization: Bearer $GITHUB_TOKEN" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
https://api.github.com/repos/${{ github.repository }}/releases) | |
if echo "$releases" | jq -e '.[] | select(.tag_name == "${{ env.latest_version }}")' > /dev/null; then | |
echo "release_exists=true" >> $GITHUB_ENV | |
else | |
echo "release_exists=false" >> $GITHUB_ENV | |
fi | |
- name: test | |
if: env.release_exists == 'true' | |
run: | | |
echo '************* ${{ env.release_exists }}' |