Skip to content

Commit

Permalink
Updating CI command
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Aug 11, 2021
1 parent 28477d4 commit 5d9589d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ jobs:
uses: "battila7/get-version-action@v2"
id: "get_version"

- name: "Set up git since we will later push to the repo"
run: |
git config --global user.name "GitHub CD bot"
git config --global user.email "code@fastybird.com"
- name: "Upgrade npm version in package.json to the tag used in the release"
run: npm version ${{ steps.get_version.outputs.version-without-v }} --allow-same-version

Expand Down Expand Up @@ -454,6 +459,11 @@ jobs:
uses: "battila7/get-version-action@v2"
id: "get_version"

- name: "Set up git since we will later push to the repo"
run: |
git config --global user.name "GitHub CD bot"
git config --global user.email "code@fastybird.com"
- name: "Upgrade npm version in package.json to the tag used in the release"
run: npm version ${{ steps.get_version.outputs.version-without-v }} --allow-same-version

Expand Down
2 changes: 1 addition & 1 deletion devices_module/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Devices module
"""

__version__ = "0.2.15"
__version__ = "0.2.16"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fastybird/devices-module",
"version": "0.2.15",
"version": "0.2.16",
"description": "Devices module data model plugin",
"keywords": [
"devices",
Expand Down

0 comments on commit 5d9589d

Please sign in to comment.