Canary Release #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Canary Release | |
on: workflow_dispatch | |
jobs: | |
export: | |
name: Generate Interfaces And Contracts | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
export_type: ['interfaces', 'all'] | |
env: | |
PROJECT_NAME: '@defi-wonderland/prophet-modules' | |
EXPORT_NAME: ${{ matrix.export_type == 'interfaces' && '-interfaces' || '' }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
node-version: 20.x | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Build project and generate out directory | |
run: yarn build | |
- name: Update version | |
run: yarn version --new-version "0.0.0-${GITHUB_SHA::8}" --no-git-tag-version | |
- name: Export Solidity - Export Type ${{ matrix.export_type }} | |
uses: defi-wonderland/[email protected] | |
with: | |
package_name: ${{ env.PROJECT_NAME }} | |
out: 'out' | |
interfaces: 'solidity/interfaces' | |
contracts: 'solidity/contracts' | |
libraries: "solidity/libraries" | |
export_type: '${{ matrix.export_type }}' | |
- name: Publish to NPM - Export Type ${{ matrix.export_type }} | |
run: cd export/${{ env.PROJECT_NAME }}${{ env.EXPORT_NAME }} && npm publish --access public --tag canary | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |