Skip to content

Commit

Permalink
raise version
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Feb 14, 2024
1 parent cf58a55 commit 0c781fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
Expand All @@ -47,7 +47,7 @@ jobs:
run: echo "version=$(cat package.json | jq '.version' | xargs)" >> $GITHUB_OUTPUT

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
Expand All @@ -72,7 +72,7 @@ jobs:
# rm -r dist/*

- name: Upload build artifact UI
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifact-ui
if-no-files-found: error
Expand All @@ -98,21 +98,21 @@ jobs:
# run: echo "version=$(cat ../analytics-ui/package.json | jq '.version' | xargs)" >> $GITHUB_OUTPUT

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.ref_name }}

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build backend
run: |
./build.sh analytics-ext-service ${{ needs.build_ui.outputs.version }}
- name: Upload build artifact service
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifact-service
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion analytics-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "analytics-extension",
"version": "2.3.0",
"version": "2.3.1",
"description": "Extends the standard Cumulocity administration web application with a dialog to add Analytics Builder extensions.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 0c781fe

Please sign in to comment.