Skip to content

Commit

Permalink
Merge pull request #33 from EdgePi-Cloud/dev
Browse files Browse the repository at this point in the history
merge dev to main: auto versioning
  • Loading branch information
jimmy121192 authored Jan 15, 2024
2 parents 7b899b1 + 9be187b commit 980a135
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 2 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Update Version on Dev Push
on:
push:
branches:
- dev

jobs:
update-version:
if: ${{contains(toJSON(github.event.head_commit.message), 'Bump version') == false}}
runs-on: ubuntu-latest

steps:
- name: Get version type
id: version_type
run: |
if [[ ${{ contains(toJSON(github.event.head_commit.message), 'bump_major') }} == true ]]; then
echo "VERSION_TYPE=major" >> $GITHUB_OUTPUT
elif [[ ${{ contains(toJSON(github.event.head_commit.message), 'bump_minor') }} == true ]]; then
echo "VERSION_TYPE=minor" >> $GITHUB_OUTPUT
else
echo "VERSION_TYPE=patch" >> $GITHUB_OUTPUT
fi
shell: bash

- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.ACTIONS_BOT_TOKEN }}

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14 # Adjust this to your desired Node.js version

- name: Set Git user information
run: |
git config --local user.name "bot-edgepi"
git config --local user.email "[email protected]"
- name: Set versioned branch name
id: branch-name
run: |
echo "version-$(date +'%Y%m%d%H%M%S')-$(openssl rand -hex 4)" > branch-name.txt
echo "BRANCH_NAME=$(cat branch-name.txt)" >> $GITHUB_ENV
- name: Checkout new branch
run: |
branch_name=$(cat branch-name.txt)
git checkout -b $branch_name
git push --set-upstream origin $branch_name
- name: Bump version
run: |
npm version ${{ steps.version_type.outputs.VERSION_TYPE }} --force
- name: Push to the dev branch
run: |
branch_name=$(cat branch-name.txt)
version=$(cat package.json | jq -r '.version')
git add .
git commit -m "Bump version to $version"
git push --follow-tags
git push --force origin "$branch_name":dev
- name: Delete versioned branch
run: |
branch_name=$(cat branch-name.txt)
git checkout dev
git branch -D $branch_name
git push origin --delete $branch_name
1 change: 1 addition & 0 deletions branch-name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version-20240115230022-89d79715
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@edgepi-cloud/node-red-edgepi-thermocouple",
"version": "1.0.10",
"version": "1.0.11",
"description": "A node-red node for EdgePi thermocouple module",
"main": "edgepi-thermocouple.js",
"scripts": {
Expand Down

0 comments on commit 980a135

Please sign in to comment.