Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
fix gha
Browse files Browse the repository at this point in the history
  • Loading branch information
xgui3783 committed Aug 11, 2020
1 parent 8a1e498 commit 26a1222
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: |
PACKAGEJSON_VER=v$(cat package.json | jq -r '.version')
echo PACKAGEJSON_VER $PACKAGEJSON_VER
echo GITHUB_REF $GITHUB_REF
if [ "$GITHUB_REF" = "$PACKAGEJSON_VER" ]; then
exit 0
else
exit 1
fi
PACKAGEJSON_VER=v$(cat package.json | jq -r '.version')
echo PACKAGEJSON_VER $PACKAGEJSON_VER
echo GITHUB_REF $GITHUB_REF
if [ "$GITHUB_REF" = "$PACKAGEJSON_VER" ]; then
exit 0
else
exit 1
fi
create-release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kg-dataset-previewer",
"version": "1.0.2",
"version": "1.0.3",
"description": "Preview a few manually curated datasets.",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit 26a1222

Please sign in to comment.