Git fetch 2 #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: Package | ||
on: push | ||
jobs: | ||
Package_For_PIP: | ||
strategy: | ||
matrix: | ||
platform: [ubuntu-latest] | ||
python: ['3.x'] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: "Echo Vars" | ||
run: | | ||
echo matrix.platform: ${{ matrix.platform }} | ||
echo matrix.python: ${{ matrix.python }} | ||
- name: "Git fetch" | ||
- uses: actions/checkout@v3 | ||
- run: git fetch --prune --unshallow | ||
- name: Get Version Number new | ||
run: | | ||
branchname=$(git rev-parse --abbrev-ref HEAD) | ||
echo $branchname | ||
currrelease=$(git describe --abbrev=0 --tags) | ||
echo $currrelease | ||
isrrelease=0 | ||
if [[ "$currversion" =~ v[0-9]\. ]]; then | ||
isrrelease=1 | ||
fi | ||
echo $isrrelease | ||
- name: Get Version Number | ||
run: | | ||
currversion=$(git rev-parse --abbrev-ref HEAD) | ||
echo $currversion | ||
if [[ "$currversion" =~ v[0-9]\. ]]; then | ||
verparts=($(echo $currversion | tr "-" "\n")) | ||
len=${#verparts[@]} | ||
if [ $len -gt 1 ]; then | ||
txtversion=${verparts[0]}-${verparts[1]} | ||
else | ||
txtversion=${verparts[0]} | ||
fi | ||
numver=$(echo $currversion | sed -E 's/v([^-]*)/\1/') | ||
echo numver\: $numver | ||
version=$numver | ||
echo version\: $version | ||
fi | ||
- name: Update Version Number in python files | ||
run: | | ||
sed -i -e "s/version = \"[^\"]*\"/version = \"${version}\"/" $(find . -name "*.py") | ||
sed -i -e "s/# Version .*/# Version ${version}/" $(find . -name "*.py") |