chore: update deps and type issues #645
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: Development extension | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
env: | |
# NO SENTRY CURRENTLY | |
COINBASE_APP_ID: ${{ secrets.COINBASE_APP_ID }} | |
MOONPAY_API_KEY: ${{ secrets.MOONPAY_API_KEY }} | |
SEGMENT_WRITE_KEY: ${{ secrets.SEGMENT_WRITE_KEY_STAGING }} | |
TRANSAK_API_KEY: ${{ secrets.TRANSAK_API_KEY }} | |
BESTINSLOT_API_KEY: ${{ secrets.BESTINSLOT_API_KEY }} | |
BITFLOW_API_HOST: ${{ secrets.BITFLOW_API_HOST }} | |
BITFLOW_API_KEY: ${{ secrets.BITFLOW_API_KEY }} | |
BITFLOW_STACKS_API_HOST: ${{ secrets.BITFLOW_STACKS_API_HOST }} | |
BITFLOW_READONLY_CALL_API_HOST: ${{ secrets.BITFLOW_READONLY_CALL_API_HOST }} | |
PREVIEW_RELEASE: true | |
WALLET_ENVIRONMENT: preview | |
jobs: | |
build-extension: | |
runs-on: ubuntu-latest | |
environment: development | |
outputs: | |
new_version: ${{ steps.extract_version.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/provision | |
- name: Extract version | |
id: extract_version | |
uses: Saionaro/[email protected] | |
- name: Build project | |
env: | |
IS_PUBLISHING: true | |
run: pnpm build | |
- uses: actions/upload-artifact@v3 | |
name: Upload build artifact | |
with: | |
name: leather-io | |
path: dist |