Merge pull request #6 from mabel-dev/initial #8
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: Count Action Executions | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
count_executions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # Choose the Python version you want to use | |
- name: Check if build.py needs update | |
id: check_changes | |
run: | | |
changes=$(git diff --name-only) | |
if [[ "$changes" == *"__version__.py"* ]]; then | |
echo "::set-output name=changes::0" | |
else | |
echo "::set-output name=changes::1" | |
fi | |
- name: Update build.py | |
if: steps.check_changes.outputs.changes != 0 | |
run: | | |
DRAKEN_VERSION=$(python $GITHUB_WORKSPACE/build_counter.py) | |
git config --global user.name "XB500" | |
git config --global user.email "XB500@users.noreply.github.com" | |
git add $GITHUB_WORKSPACE/draken/__version__.py | |
git commit -m "Draken Version ${DRAKEN_VERSION}" | |
git push |