Create Dev Build #281
Workflow file for this run
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: Create Dev Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'build/**' | |
jobs: | |
release: | |
strategy: | |
matrix: | |
platform: [macos-12, macos-14] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout Zui | |
uses: actions/checkout@v3 | |
- name: Setup Zui | |
uses: ./.github/actions/setup-zui | |
- name: Build Zui | |
uses: ./.github/actions/build-zui | |
with: | |
cmd: yarn nx package-zui zui | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
# Windows | |
ssl_com_username: ${{ secrets.WINDOWS_SIGNING_SSL_COM_USERNAME }} | |
ssl_com_password: ${{ secrets.WINDOWS_SIGNING_SSL_COM_PASSWORD }} | |
ssl_com_totp_secret: ${{ secrets.WINDOWS_SIGNING_SSL_COM_TOTP_SECRET }} | |
ssl_com_credential_id: ${{ secrets.WINDOWS_SIGNING_SSL_COM_CREDENTIAL_ID }} | |
# Mac | |
apple_id: ${{ secrets.APPLEID_USER }} | |
apple_id_password: ${{ secrets.APPLEID_PASSWORD }} | |
apple_team_id: ${{ secrets.APPLE_TEAM_ID }} | |
cert_p12: ${{ secrets.APPLE_DEVELOPER_ID_CERT_P12_BASE64 }} | |
cert_passphrase: ${{ secrets.APPLE_DEVELOPER_ID_CERT_PASSPHRASE }} | |
- name: Print arch info about Zed binaries after running package zui | |
run: | | |
file node_modules/zed/dist/zed | |
file apps/zui/zdeps/zed | |
file packages/zed-node/node_modules/zed/dist/zed | |
shell: bash | |
- name: Upload Artifacts | |
uses: ./.github/actions/upload-build-artifacts |