Skip to content

Commit

Permalink
asdasd
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula committed Nov 16, 2023
1 parent 8416f7e commit 01e61b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/covector-version-or-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ jobs:
result-encoding: string
script: |
const output = `${{ toJSON(steps.covector.outputs) }}`;
const json = JSON.parse(output);
const id = json["-org-dashed-pkg-releaseId"];
return id
const [_, id] = /"-org-dashed-pkg-releaseId": "([0-9]+)"/g.exec(output);
return id;
- name: Get result
run: echo "${{steps.set-result.outputs.result}}"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "@org-dashed/pkg",
"version": "0.10.0"
"version": "0.11.0"
}

0 comments on commit 01e61b3

Please sign in to comment.