[i18n] Updated Translations #3436
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: Build macOS | |
on: | |
pull_request: | |
branches: [main, stable] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Build Test Files' | |
required: false | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository. | |
uses: actions/checkout@v3 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install node-gyp. | |
run: yarn global add node-gyp | |
- name: Install modules. | |
run: yarn install --frozen-lockfile | |
- name: Build artifacts. | |
run: yarn dist:mac --x64 --arm64 --publish=never | |
env: | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
CSC_IDENTITY_AUTO_DISCOVERY: false | |
- name: Upload x64. | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mac-x64 | |
path: dist/Heroic*x64.dmg | |
retention-days: 14 | |
- name: Upload ARM64. | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mac-arm64 | |
path: dist/Heroic*arm64.dmg | |
retention-days: 14 |