Skip to content

New de exe from 6 September #271

New de exe from 6 September

New de exe from 6 September #271

Workflow file for this run

name: Increment Version
on:
pull_request:
types: [opened]
jobs:
increment-patch-version:
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout code
uses: actions/checkout@v2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Increment patch version
run: |
bash scripts/increment_version.sh
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
message: 'Incremented patch version'
committer_name: GitHub Actions
add: 'CMakeLists.txt'