Signed-off-by: Lawan Samarasekara <lawan.chaamindu1234@gmail.com> #9
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: Update Version and README | ||
on: | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ "master" ]: | ||
jobs: | ||
update_version_and_readme: | ||
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' | ||
- name: Determine current date | ||
id: current_date | ||
run: echo "::set-output name=date::$(date +'%Y%m%d')" | ||
- name: Read merge counter from file | ||
id: read_counter | ||
run: echo "::set-output name=counter::$(cat counter.txt || echo '0')" | ||
- name: Increment merge counter | ||
id: increment_counter | ||
run: | | ||
counter=$((${{ steps.read_counter.outputs.counter }} + 1)) | ||
echo "::set-output name=counter::$counter" | ||
- name: Update version file with date and merge counter | ||
run: echo "3.0.0.${{ steps.current_date.outputs.date }}.${{ steps.increment_counter.outputs.counter }}" > VERSION.txt | ||
- name: Update README.md | ||
run: | | ||
sed -i "s/Current Version:.*/Current Version: 3.0.0.${{ steps.current_date.outputs.date }}.${{ steps.increment_counter.outputs.counter }} (This line will be automatically updated to reflect the latest version)/" README.md | ||
- name: Set up Git identity | ||
run: | | ||
git config --global user.email "action@github.com" | ||
git config --global user.name "GitHub Action" | ||
- name: Commit version and README update | ||
run: | | ||
git add VERSION.txt README.md | ||
git commit -m "Update version to 3.0.0.${{ steps.current_date.outputs.date }}.${{ steps.increment_counter.outputs.counter }}" | ||
git push |