* Separate CICD into multi platform * Update yarn script to build multi-platform and arch --------- Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: Hien To <>
151 lines
4.0 KiB
YAML
151 lines
4.0 KiB
YAML
name: Jan Build MacOS App
|
|
|
|
on:
|
|
push:
|
|
tags: ['v*.*.*']
|
|
|
|
jobs:
|
|
build-macos:
|
|
runs-on: macos-latest
|
|
environment: production
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Getting the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Installing node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install jq
|
|
uses: dcarbone/install-jq-action@v2.0.1
|
|
|
|
- name: Get tag
|
|
id: tag
|
|
uses: dawidd6/action-get-tag@v1
|
|
|
|
- name: Update app version base on tag
|
|
run: |
|
|
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "Error: Tag is not valid!"
|
|
exit 1
|
|
fi
|
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
|
mv /tmp/package.json electron/package.json
|
|
env:
|
|
VERSION_TAG: ${{ steps.tag.outputs.tag }}
|
|
|
|
- name: Install yarn dependencies
|
|
run: |
|
|
yarn install
|
|
yarn build:plugins
|
|
|
|
- name: Get Cer for code signing
|
|
run: base64 -d <<< "$CODE_SIGN_P12_BASE64" > /tmp/codesign.p12
|
|
shell: bash
|
|
env:
|
|
CODE_SIGN_P12_BASE64: ${{ secrets.CODE_SIGN_P12_BASE64 }}
|
|
|
|
- name: Build and publish app
|
|
run: |
|
|
yarn build:publish-darwin
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CSC_LINK: "/tmp/codesign.p12"
|
|
CSC_KEY_PASSWORD: ${{ secrets.CODE_SIGN_P12_PASSWORD }}
|
|
CSC_IDENTITY_AUTO_DISCOVERY: "true"
|
|
|
|
build-windows-x64:
|
|
runs-on: windows-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Getting the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Installing node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install jq
|
|
uses: dcarbone/install-jq-action@v2.0.1
|
|
|
|
- name: Get tag
|
|
id: tag
|
|
uses: dawidd6/action-get-tag@v1
|
|
|
|
- name: Update app version base on tag
|
|
shell: bash
|
|
run: |
|
|
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "Error: Tag is not valid!"
|
|
exit 1
|
|
fi
|
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
|
mv /tmp/package.json electron/package.json
|
|
env:
|
|
VERSION_TAG: ${{ steps.tag.outputs.tag }}
|
|
|
|
- name: Install yarn dependencies
|
|
run: |
|
|
yarn config set network-timeout 300000
|
|
yarn install
|
|
yarn build:plugins
|
|
|
|
- name: Build and publish app
|
|
run: |
|
|
yarn build:publish-win32
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
build-linux-x64:
|
|
runs-on: ubuntu-latest
|
|
environment: production
|
|
env:
|
|
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Getting the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Installing node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install jq
|
|
uses: dcarbone/install-jq-action@v2.0.1
|
|
|
|
- name: Install Snapcraft
|
|
uses: samuelmeuli/action-snapcraft@v2
|
|
|
|
- name: Get tag
|
|
id: tag
|
|
uses: dawidd6/action-get-tag@v1
|
|
|
|
- name: Update app version base on tag
|
|
run: |
|
|
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "Error: Tag is not valid!"
|
|
exit 1
|
|
fi
|
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
|
mv /tmp/package.json electron/package.json
|
|
env:
|
|
VERSION_TAG: ${{ steps.tag.outputs.tag }}
|
|
|
|
- name: Install yarn dependencies
|
|
run: |
|
|
yarn config set network-timeout 300000
|
|
yarn install
|
|
yarn build:plugins
|
|
|
|
- name: Build and publish app
|
|
run: |
|
|
yarn build:publish-linux
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |