Skip to content

Commit

Permalink
Merge pull request #2 from dmccartney/daniel-pub
Browse files Browse the repository at this point in the history
build: prep for publishing
  • Loading branch information
dmccartney authored Apr 10, 2023
2 parents a2c4d58 + 1f3ee64 commit 13890b6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# safe-superuser

[![NPM version](https://img.shields.io/npm/v/safe-superuser.svg?style=flat-square)](https://www.npmjs.com/package/safe-superuser)
![Test](https://github.com/dmccartney/safe-superuser/actions/workflows/test.yml/badge.svg)

The `SuperUserModule` is a Gnosis Safe add-on that enables trusted super-users to execute
transactions without additional confirmations, streamlining the process.

Expand Down
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
},
"author": "Daniel McCartney <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dmccartney/safe-superuser",
"repository": {
"type": "git",
"url": "https:[email protected]:dmccartney/safe-superuser.git"
},
"bugs": {
"url": "https://github.com/dmccartney/safe-superuser/issues"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2"
},
Expand Down

0 comments on commit 13890b6

Please sign in to comment.