Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 53de4c2

Browse files
authored
Merge pull request #169 from influxdata/chore/release
bump version, release, put back build
2 parents 46921b9 + 406906f commit 53de4c2

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.eslintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
22
"extends": "./.config/.eslintrc",
3-
"parser": "@typescript-eslint/parser",
43
}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
export GRAFANA_PLUGIN_VERSION=$(cat dist/plugin.json | jq -r .info.version)
7272
export GRAFANA_PLUGIN_TYPE=$(cat dist/plugin.json | jq -r .type)
7373
export GRAFANA_PLUGIN_ARTIFACT=${GRAFANA_PLUGIN_ID}-${GRAFANA_PLUGIN_VERSION}.zip
74-
export GRAFANA_PLUGIN_ARTIFACT_CHECKSUM=${GRAFANA_PLUGIN_ARTIFACT}.sha256
74+
export GRAFANA_PLUGIN_ARTIFACT_CHECKSUM=${GRAFANA_PLUGIN_ARTIFACT}.md5
7575
7676
echo "plugin-id=${GRAFANA_PLUGIN_ID}" >> $GITHUB_OUTPUT
7777
echo "plugin-version=${GRAFANA_PLUGIN_VERSION}" >> $GITHUB_OUTPUT
@@ -95,7 +95,7 @@ jobs:
9595
run: |
9696
mv dist ${{ steps.metadata.outputs.plugin-id }}
9797
zip ${{ steps.metadata.outputs.archive }} ${{ steps.metadata.outputs.plugin-id }} -r
98-
sha256sum ${{ steps.metadata.outputs.archive }} > ${{ steps.metadata.outputs.archive-checksum }}
98+
md5sum ${{ steps.metadata.outputs.archive }} > ${{ steps.metadata.outputs.archive-checksum }}
9999
echo "checksum=$(cat ./${{ steps.metadata.outputs.archive-checksum }} | cut -d' ' -f1)" >> $GITHUB_OUTPUT
100100
101101
- name: Validate plugin
@@ -127,6 +127,6 @@ jobs:
127127
- Click the **Submit Plugin** button
128128
- Fill in the Plugin Submission form:
129129
- Paste this [.zip asset link](https://github.com/${{ github.repository }}/releases/download/v${{ steps.metadata.outputs.plugin-version }}/${{ steps.metadata.outputs.archive }}) in the Plugin URL field
130-
- Paste this [.zip.sha256 link](https://github.com/${{ github.repository }}/releases/download/v${{ steps.metadata.outputs.plugin-version }}/${{ steps.metadata.outputs.archive-checksum }}) in the SHA256 field
130+
- Paste this [.zip.md5 link](https://github.com/${{ github.repository }}/releases/download/v${{ steps.metadata.outputs.plugin-version }}/${{ steps.metadata.outputs.archive-checksum }}) in the MD5 field
131131
132132
Once done please remove these instructions and publish this release.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "flightsql-datasource",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
7-
"build-plugin": "yarn install --pure-lockfile && yarn build && mage -v",
7+
"build-plugin": "yarn install --pure-lockfile && yarn build && mage -v && pushd dist && tar -czvf ../influxdata-flightsql-datasource.tar.gz * && popd",
88
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
99
"test": "jest --watch --onlyChanged",
1010
"test:ci": "jest --maxWorkers 4 --passWithNoTests",

0 commit comments

Comments
 (0)