diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 38414bfbe..2475c2505 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9d1be6169..afb1610b5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 }} diff --git a/package.json b/package.json index 364d3682e..4820ea032 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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",