mirror of
https://github.com/LamGC/jenkins-agent-with-docker.git
synced 2025-04-29 22:27:31 +00:00
Compare commits
2 Commits
0f4dd3416d
...
538b70656e
Author | SHA1 | Date | |
---|---|---|---|
|
538b70656e | ||
599c6372d8 |
2
.github/workflows/check-updates.yml
vendored
2
.github/workflows/check-updates.yml
vendored
@ -19,6 +19,8 @@ jobs:
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.CHECK_UPDATES_TOKEN }}
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install -y jq
|
||||
- name: Check updates
|
||||
run: chmod +x ./update-version.sh && ./update-version.sh
|
||||
- name: Get latest version
|
||||
|
@ -1 +1 @@
|
||||
|
||||
3283.v92c105e0f819-6
|
||||
|
@ -1,4 +1,12 @@
|
||||
LATEST_VERSION=$(curl -s https://api.github.com/repos/jenkinsci/docker-agent/releases/latest | grep tag_name | cut -d '"' -f 4)
|
||||
#!/bin/bash
|
||||
|
||||
LATEST_VERSION=$(curl -s https://api.github.com/repos/jenkinsci/docker-agent/releases/latest | jq -r '.tag_name')
|
||||
CURL_EXIT_CODE=$?
|
||||
if [ $CURL_EXIT_CODE -ne 0 ] || [ -z "$LATEST_VERSION" ]; then
|
||||
echo "Failed to retrieve the latest version"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$LATEST_VERSION" != "$(cat LATEST_VERSION)" ]; then
|
||||
echo "$LATEST_VERSION" > LATEST_VERSION
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user