Skip to content

Commit c37a0de

Browse files
authored
feat: Publish NPM package for version v5.6.0 rc1 (#247)
2 parents 6a4fac2 + 60adfc2 commit c37a0de

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ concurrency:
99
cancel-in-progress: true
1010

1111
jobs:
12-
# Note: changing the name of the job disables Slither checks with the error:
13-
# Warning: Code scanning cannot determine the alerts introduced by this pull
14-
# request, because 1 configuration present on refs/heads/develop was not found:
15-
#
16-
# Actions workflow (main.yml)
17-
# ❓ .github/workflows/main.yml:coverage
18-
coverage:
12+
build-and-test:
1913
runs-on: ubuntu-latest
2014
steps:
2115
- name: Checkout

.github/workflows/publish.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: Publish NPM Package
22

33
on:
4-
release:
5-
types: [published]
4+
push:
5+
tags:
6+
- 'v*'
67

78
jobs:
9+
build-and-test:
10+
uses: ./.github/workflows/main.yml
11+
812
publish:
9-
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
13+
needs: build-and-test
14+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
1015
secrets:
1116
npm-token: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@iexec/poco",
3-
"version": "5.5.0",
3+
"version": "5.6.0-rc1",
44
"description": "",
55
"author": "iExec",
66
"license": "Apache-2.0",
7-
"homepage": "https://github.com/iExecBlockchainComputing/PoCo-dev.git#readme",
7+
"homepage": "https://github.com/iExecBlockchainComputing/PoCo#readme",
88
"main": "",
99
"scripts": {
1010
"prepare": "husky",
@@ -33,10 +33,10 @@
3333
},
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/iExecBlockchainComputing/PoCo-dev.git"
36+
"url": "git+https://github.com/iExecBlockchainComputing/PoCo.git"
3737
},
3838
"bugs": {
39-
"url": "https://github.com/iExecBlockchainComputing/PoCo-dev.git/issues"
39+
"url": "https://github.com/iExecBlockchainComputing/PoCo/issues"
4040
},
4141
"files": [
4242
"/contracts",

0 commit comments

Comments
 (0)