release-desktop-snap #736
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: release-desktop-snap | |
on: | |
workflow_run: | |
workflows: | |
- daily-build | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
release-desktop: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
if: ${{ !github.event.workflow_run || (github.event.workflow_run && github.event.workflow_run.conclusion == 'success') }} | |
steps: | |
- 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: 'desktop-snap' | |
covalent_key: ${{ secrets.COVALENT_KEY }} | |
sentry_token: ${{ secrets.SENTRY_TOKEN }} | |
privy_app_id: ${{ secrets.PRIVY_APP_ID }} | |
privy_mobile_client_id: ${{ secrets.PRIVY_MOBILE_CLIENT_ID }} | |
revenuecat_api_key_web: ${{ secrets.REVENUECAT_API_KEY_WEB }} | |
revenuecat_api_key_web_sandbox: ${{ secrets.REVENUECAT_API_KEY_WEB_SANDBOX }} | |
revenuecat_api_key_apple: ${{ secrets.REVENUECAT_API_KEY_APPLE }} | |
revenuecat_api_key_google: ${{ secrets.REVENUECAT_API_KEY_GOOGLE }} | |
- name: Install Snapcraft | |
uses: samuelmeuli/action-snapcraft@v2 | |
- name: 'Setup ENV' | |
run: | | |
eval "$(node -e 'const v=require("./apps/desktop/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 | |
env: | |
github_ref: ${{ github.ref }} | |
workflow_run_number: ${{ github.event.workflow_run.run_number}} | |
- 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=8192' | |
run: | | |
yarn | |
- name: Build and Sign Snap Linux | |
env: | |
NODE_OPTIONS: '--max_old_space_size=8192' | |
APPLEID: ${{ secrets.APPLEID }} | |
APPLEIDPASS: ${{ secrets.APPLEIDPASS }} | |
ASC_PROVIDER: ${{ secrets.ASC_PROVIDER }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} | |
CSC_LINK: './sign.p12' | |
run: 'cd apps/desktop && yarn build:snap' | |
- name: Upload Artifacts Release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release | |
path: | | |
./apps/desktop/build-electron/* | |
!./apps/desktop/build-electron/win-unpacked | |
!./apps/desktop/build-electron/mac-arm64 | |
!./apps/desktop/build-electron/mac | |
!./apps/desktop/build-electron/linux-unpacked | |
!./apps/desktop/build-electron/builder-debug.yml | |
- name: Upload Artifacts to Snap Linux | |
if: ${{ github.event.workflow_run }} | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | |
run: | | |
snapcraft push ./apps/desktop/build-electron/*.snap --release edge | |
- 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: Desktop | |
artifact-name: OneKey-Desktop-Linux-Snap-RN | |
artifact-bundle-id: 'so.onekey.wallet.desktop' | |
artifact-version-name: '${{ env.BUILD_APP_VERSION }}@${{ env.BUILD_NUMBER }}' | |
artifact-version-code: '${{ env.BUILD_NUMBER }}' | |
artifact-download-url: '${{ env.ARTIFACTS_URL }}' |