2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/.github/workflows/publish.yml

145 lines
3.9 KiB
YAML
Raw Normal View History

2021-12-13 10:50:32 +00:00
name: Publish
on: workflow_dispatch
jobs:
build-macos:
runs-on: macos-11
2021-12-13 10:50:32 +00:00
steps:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16.13.1'
2021-12-13 10:50:32 +00:00
- name: Checkout Books
uses: actions/checkout@v2
2022-10-31 08:21:52 +00:00
- name: Install Dependencies
run: |
yarn set version 1.22.18
yarn
2022-01-31 07:03:41 +00:00
- name: Set Error Log Creds
env:
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
2022-01-31 07:03:41 +00:00
run: |
echo $ERR_LOG_KEY > log_creds.txt
echo $ERR_LOG_SECRET >> log_creds.txt
echo $ERR_LOG_URL >> log_creds.txt
echo $TELEMETRY_URL >> log_creds.txt
2021-12-13 10:50:32 +00:00
- name: Run build
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_PASSWORD }}
2021-12-13 10:50:32 +00:00
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
CSC_IDENTITY_AUTO_DISCOVERY: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn set version 1.22.18
yarn electron:build --mac --publish always
2022-01-13 07:32:24 +00:00
- name: Tar files
2022-01-21 10:28:43 +00:00
run: tar -cvf dist-macOS.tar dist_electron
2022-01-13 07:32:24 +00:00
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: dist-macOS
path: dist-macOS.tar
2021-12-13 10:50:32 +00:00
build-linux:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16.13.1'
2021-12-13 10:50:32 +00:00
- name: Checkout Books
uses: actions/checkout@v2
2022-10-31 08:21:52 +00:00
- name: Install Dependencies
run: |
yarn set version 1.22.18
yarn
2022-01-31 07:03:41 +00:00
- name: Set Error Log Creds
env:
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
2022-01-31 07:03:41 +00:00
run: |
echo $ERR_LOG_KEY > log_creds.txt
echo $ERR_LOG_SECRET >> log_creds.txt
echo $ERR_LOG_URL >> log_creds.txt
echo $TELEMETRY_URL >> log_creds.txt
2021-12-13 10:50:32 +00:00
- name: Run build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn set version 1.22.18
yarn electron:build --linux --publish always
2021-12-13 10:50:32 +00:00
2022-01-13 07:32:24 +00:00
- name: Tar files
2022-01-21 10:28:43 +00:00
run: tar -cvf dist-linux.tar dist_electron
2022-01-13 07:32:24 +00:00
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: dist-linux
path: dist-linux.tar
2021-12-13 10:50:32 +00:00
build-windows:
2022-04-01 09:54:20 +00:00
runs-on: windows-2019
2021-12-13 12:36:47 +00:00
defaults:
run:
shell: bash
2021-12-13 10:50:32 +00:00
steps:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16.13.1'
2021-12-13 10:50:32 +00:00
- name: Checkout Books
uses: actions/checkout@v2
2022-10-31 08:21:52 +00:00
- name: Install Dependencies
2022-04-01 09:54:20 +00:00
run: yarn
2022-01-31 07:03:41 +00:00
- name: Set Error Log Creds
env:
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
2022-01-31 07:03:41 +00:00
run: |
echo $ERR_LOG_KEY > log_creds.txt
echo $ERR_LOG_SECRET >> log_creds.txt
echo $ERR_LOG_URL >> log_creds.txt
echo $TELEMETRY_URL >> log_creds.txt
2021-12-13 10:50:32 +00:00
- name: Run build
env:
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2022-04-01 09:54:20 +00:00
run: yarn electron:build --win --publish always
2022-01-13 07:32:24 +00:00
- name: Tar files
2022-01-21 10:28:43 +00:00
run: tar -cvf dist-windows.tar dist_electron
2022-01-13 07:32:24 +00:00
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: dist-windows
path: dist-windows.tar