Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

chore(version): build number 3.0.3 #3

chore(version): build number 3.0.3

chore(version): build number 3.0.3 #3

Workflow file for this run

# SPDX-FileCopyrightText: 2023 SAP SE
#
# SPDX-License-Identifier: Apache-2.0
#
# This file is part of FEDEM - https://openfedem.org
name: Bump build number
on:
push:
branches:
- main
jobs:
bump-build-no:
runs-on: ubuntu-latest
steps:
- name: Check out source code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.ACCESS_PAT }}
- name: Bump build number
run: echo "VERSION=$(awk -F. '{$NF++;print}' OFS=. < cfg/VERSION)" >> $GITHUB_ENV
- name: Update VERSION file
run: |
echo $VERSION > cfg/VERSION
echo $VERSION > PythonAPI/version.txt
- name: Push updated VERSION file
run: |
git config user.name github-actions
git config user.email [email protected]
git commit -m"chore(version): build number $VERSION" cfg/VERSION PythonAPI/version.txt
git push origin HEAD