Skip to content

Commit

Permalink
[wip] Add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aefhm committed Oct 13, 2023
1 parent 5e712c1 commit c49de19
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: publish

on: pull_request
# push:
# branches: main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
# - uses: JS-DevTools/npm-publish@v2
# with:
# token: ${{ secrets.NPM_TOKEN }}
# package: clients/js
- uses: JS-DevTools/npm-publish@v2
with:
token: "TEST"
package: integrations/hardhat
- uses: JS-DevTools/npm-publish@v2
with:
# token: ${{ secrets.NPM_TOKEN }}
package: contracts

0 comments on commit c49de19

Please sign in to comment.