Skip to content

Commit

Permalink
Support OpenSearch Dashboards 2.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Eva Millán <[email protected]>
  • Loading branch information
evamillan authored and dlumbrer committed Apr 12, 2023
1 parent 3989df4 commit bd88d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
id: versions
run: |
echo "::set-output name=node_version::$(node -p "(require('./osd/package.json').engines.node).match(/[.0-9]+/)[0]")"
echo "::set-output name=yarn_version::$(node -p "(require('./osd/package.json').engines.yarn).match(/[.0-9]+/)[0]")"
echo "::set-output name=yarn_version::$(node -p "require('./osd/package.json').engines.yarn")"
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.versions.outputs.node_version }}
- name: Setup yarn
run: |
npm uninstall -g yarn
echo "Installing yarn ${{ steps.versions_step.outputs.yarn_version }}"
echo "Installing yarn ${{ steps.versions.outputs.yarn_version }}"
npm i -g yarn@${{ steps.versions.outputs.yarn_version }}
- name: Move plugin to OpenSearch Dashboards folder
run: |
Expand Down
2 changes: 1 addition & 1 deletion opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "kbnPolar",
"version": "1.0.0",
"opensearchDashboardsVersion": "1.3.2",
"opensearchDashboardsVersion": "2.6.0",
"server": false,
"ui": true,
"requiredPlugins": [
Expand Down

0 comments on commit bd88d04

Please sign in to comment.