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

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-aurele-besner committed Apr 3, 2022
1 parent b442753 commit 8e2a2b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: 16
- name: NPM Clean Install
run: npm ci
run: npm ci

publish-npm:
needs: build
Expand Down Expand Up @@ -45,7 +45,9 @@ jobs:
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
- name: NPM Clean Install
run: npm ci
- name: NPM Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import hardhatAwesomeCli from 'hardhat-awesome-cli'
```

## 💪 Done
- Run test on all or sigle test file (from all your file in test/)
- Run scripts on all or sigle scripts file (from all your file in scripts/)
- Run test on all or single test file (from all your file in test/)
- Run scripts on all or single scripts file (from all your file in scripts/)
- Settings:
- Activate/Disable chain to show on test/scripts options
- Build .env file with rpc url and private key (or mnemonic)
Expand Down

0 comments on commit 8e2a2b2

Please sign in to comment.