Bump actions/checkout from 3 to 4 - autoclosed #3
Workflow file for this run
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: Bump Script Version | |
on: | |
push: | |
pull_request: | |
jobs: | |
update_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
# Check if main.py has been modified since the last commit | |
- name: Update Script Version | |
id: update-script | |
env: | |
GIT_AUTH: ${{ secrets.GIT_AUTH }} | |
run: | | |
if ! git diff HEAD~1 --name-only | grep -q "main.py"; then | |
echo "No changes to main.py since last commit" | |
exit 0 | |
else | |
echo "main.py file has been modified" | |
# Get the previous SCRIPT_VERSION from the last commit | |
PREVIOUS_SCRIPT_VERSION=$(git show HEAD~:main.py | grep "SCRIPT_VERSION = " | cut -d "=" -f 2 | tr -d " '\"") | |
# Get the current SCRIPT_VERSION from main.py | |
SCRIPT_VERSION=$(grep "SCRIPT_VERSION = " main.py | cut -d "=" -f 2 | tr -d " '\"") | |
# Check if the SCRIPT_VERSION has been manually updated | |
if [[ "$SCRIPT_VERSION" != "$PREVIOUS_SCRIPT_VERSION" ]]; then | |
echo "SCRIPT_VERSION has been manually updated" | |
exit 0 | |
else | |
echo 'SCRIPT_VERSION has NOT been manually updated' | |
# Increment the SCRIPT_VERSION by 0.1 | |
NEW_SCRIPT_VERSION=$(awk -v x=$SCRIPT_VERSION 'BEGIN { printf "%.1f", x+0.1 }') | |
# Update the SCRIPT_VERSION in main.py | |
sed -i "s/$SCRIPT_VERSION/$NEW_SCRIPT_VERSION/g" main.py | |
if [[ $(git status) == *"nothing to commit, working tree clean"* ]]; then | |
echo "Nothing to commit, working tree clean" | |
exit 0 | |
fi | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git remote set-url origin https://${{ secrets.GIT_AUTH }}@github.com/origamiofficial/samftp-rclone-updater.git | |
git add main.py | |
git commit -m "Bump Script Version" | |
git push | |
fi | |
fi |