Skip to content

release 0.0.1 (#31)

release 0.0.1 (#31) #3

name: Contracts Publish
on:
push:
tags:
- '*'
jobs:
check_tag:
uses: ./.github/workflows/reusable-check-tag.yml
with:
ref: ${{ github.ref }}
tests:
needs: [check_tag]
if: ${{ needs.check_tag.outputs.package == 'contracts' }}
uses: ./.github/workflows/contracts-tests.yml
secrets:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
publish:
needs: [check_tag, tests]
uses: ./.github/workflows/reusable-publish.yml
with:
package: ${{ needs.check_tag.outputs.package }}
version: ${{ needs.check_tag.outputs.version }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}