Add 3% per year #299
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: Interface Exporter Action | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
workflow_dispatch: | |
jobs: | |
generate_interfaces: | |
if: github.repository == 'open-dollar/od-contracts' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
export_type: ['interfaces', 'contracts'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies | |
run: yarn --frozen-lockfile --network-concurrency 1 | |
- name: Build project and generate out directory | |
run: yarn build | |
- name: Generate canary tag | |
if: github.ref_name != 'main' | |
run: yarn version --new-version "0.0.0-${GITHUB_SHA::8}" --no-git-tag-version | |
- name: Export Solidity - ${{ matrix.export_type }} | |
uses: open-dollar/solidity-exporter-action@v2.0.17 | |
with: | |
package_name: '@opendollar' | |
out: 'out' | |
interfaces: 'src/interfaces' | |
contracts: 'src/contracts' | |
libraries: 'src/libraries' | |
scripts: 'script' | |
tests: 'test' | |
export_type: '${{ matrix.export_type }}' | |
- name: Publish | |
run: cd export/@opendollar/${{ matrix.export_type }} && npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |