Skip to content

Merge pull request #372 from AdamaJava/qp2_size #148

Merge pull request #372 from AdamaJava/qp2_size

Merge pull request #372 from AdamaJava/qp2_size #148

Workflow file for this run

# This workflow increments /version.txt
name: modify version.txt
# Controls when the action will run. Triggers the workflow on push
# events but only for the master branch
on:
push:
branches: [ master ]
paths-ignore:
- '.github/workflows/main.yml'
- 'version.txt'
jobs:
# This workflow contains a single job called "Increment"
Increment:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
token: ${{ secrets.CANWOOD_TOKEN_ACTION }}
# Runs a multi-line script using the runners shell
- name: Read increment and output version.txt
run: |
VER=$(cat version.txt)
VER=$((VER + 1))
echo $VER >version.txt
# Commits the updated version.txt to the repo
- uses: stefanzweifel/[email protected]
with:
github-token: ${{ secrets.CANWOOD_TOKEN_ACTION }}
commit_message: Version incremented by Action