release-ext #3416
This file contains hidden or 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: release-ext | |
| on: | |
| workflow_run: | |
| workflows: | |
| - daily-build | |
| - daily-build-dev | |
| types: | |
| - completed | |
| workflow_dispatch: | |
| jobs: | |
| release-ext: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| if: ${{ !github.event.workflow_run || (github.event.workflow_run && github.event.workflow_run.conclusion == 'success') }} | |
| steps: | |
| - name: Show executed time | |
| run: | | |
| echo "Executed at: $(date '+%Y-%m-%d %H:%M:%S')" | |
| - name: Checkout Source Code | |
| uses: actions/checkout@v3 | |
| with: | |
| lfs: true | |
| - name: Run Shared Env Setup | |
| uses: ./.github/actions/shared-env | |
| with: | |
| env_file_name: '.env' | |
| sentry_project: 'chrome-extension' | |
| covalent_key: ${{ secrets.COVALENT_KEY }} | |
| sentry_token: ${{ secrets.SENTRY_TOKEN }} | |
| sentry_dsn_react_native: ${{ secrets.SENTRY_DSN_REACT_NATIVE }} | |
| sentry_dsn_web: ${{ secrets.SENTRY_DSN_WEB }} | |
| sentry_dsn_desktop: ${{ secrets.SENTRY_DSN_DESKTOP }} | |
| sentry_dsn_mas: ${{ secrets.SENTRY_DSN_MAS }} | |
| sentry_dsn_snap: ${{ secrets.SENTRY_DSN_SNAP }} | |
| sentry_dsn_winms: ${{ secrets.SENTRY_DSN_WINMS }} | |
| sentry_dsn_ext: ${{ secrets.SENTRY_DSN_EXT }} | |
| - name: 'Setup ENV' | |
| run: | | |
| eval "$(node -e 'const v=require("./apps/ext/package.json").version; console.log("pkg_version="+v)')" | |
| echo '$pkg_version='$pkg_version | |
| echo "PKG_VERSION=$pkg_version" >> $GITHUB_ENV | |
| artifacts_url="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" | |
| echo "ARTIFACTS_URL=$artifacts_url" >> $GITHUB_ENV | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| registry-url: 'https://npm.pkg.github.com' | |
| always-auth: true | |
| scope: '@onekeyhq' | |
| - name: Get yarn cache directory path | |
| id: yarn-cache-dir-path | |
| run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v3 | |
| id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
| with: | |
| path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Install Dep | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NODE_OPTIONS: '--max_old_space_size=4096' | |
| run: | | |
| yarn | |
| - name: Build Ext | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=8192' | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: 'yarn app:ext:build:all' | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: onekey-extension-rn-${{ env.BUILD_APP_VERSION }}-${{ env.BUILD_NUMBER }}-${{ env.BUILD_BUNDLE_VERSION }}-${{ github.sha }} | |
| path: | | |
| ./apps/ext/build/_dist/*.zip | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: onekey-extension-rn-development-build-${{ env.BUILD_APP_VERSION }}-${{ env.BUILD_NUMBER }}-${{ env.BUILD_BUNDLE_VERSION }}-${{ github.sha }} | |
| path: | | |
| ./apps/ext/build/_development_build_dist/*.zip | |
| - name: 'Notify to Slack' | |
| if: ${{ github.event.workflow_run }} | |
| uses: onekeyhq/actions/slack-notify-webhook@main | |
| with: | |
| web-hook-url: ${{ secrets.SLACK_NOTIFICATION_WEBHOOK }} | |
| secret-key: ${{ secrets.ACTION_SIGN_SECERT_KEY }} | |
| artifact-type: Extension | |
| artifact-name: OneKey-Extension-RN | |
| artifact-bundle-id: 'so.onekey.wallet.extension' | |
| artifact-version-name: '${{ env.BUILD_APP_VERSION }}@${{ env.BUILD_NUMBER }}' | |
| artifact-version-code: '${{ env.BUILD_NUMBER }}' | |
| artifact-download-url: '${{ env.ARTIFACTS_URL }}' |