Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ concurrency:
cancel-in-progress: true

jobs:
# Note: changing the name of the job disables Slither checks with the error:
# Warning: Code scanning cannot determine the alerts introduced by this pull
# request, because 1 configuration present on refs/heads/develop was not found:
#
# Actions workflow (main.yml)
# ❓ .github/workflows/main.yml:coverage
coverage:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Publish NPM Package

on:
release:
types: [published]
push:
tags:
- 'v*'

jobs:
build-and-test:
uses: ./.github/workflows/main.yml

publish:
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/publish-npm.yml@publish-npm-v1.2.0
needs: build-and-test
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/publish-npm.yml@publish-npm-v1.5.0
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@iexec/poco",
"version": "5.5.0",
"version": "5.6.0-rc1",
"description": "",
"author": "iExec",
"license": "Apache-2.0",
"homepage": "https://github.com/iExecBlockchainComputing/PoCo-dev.git#readme",
"homepage": "https://github.com/iExecBlockchainComputing/PoCo#readme",
"main": "",
"scripts": {
"prepare": "husky",
Expand Down Expand Up @@ -33,10 +33,10 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/PoCo-dev.git"
"url": "git+https://github.com/iExecBlockchainComputing/PoCo.git"
},
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/PoCo-dev.git/issues"
"url": "https://github.com/iExecBlockchainComputing/PoCo/issues"
},
"files": [
"/contracts",
Expand Down