focalboard/.github/workflows/build-mac.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2021-01-06 23:27:51 +01:00
name: Build-Mac
on: workflow_dispatch
jobs:
macos:
runs-on: macos-10.15
steps:
- name: Checkout
uses: actions/checkout@v2
2021-01-18 22:57:27 +01:00
- name: Replace token 1
2021-01-18 23:11:02 +01:00
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
2021-01-18 22:04:25 +01:00
2021-01-18 22:57:27 +01:00
- name: Replace token 2
2021-01-18 23:11:02 +01:00
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
2021-01-18 22:04:25 +01:00
2021-01-06 23:27:51 +01:00
- name: npm install
run: cd webapp; npm install --no-optional
2021-01-06 23:27:51 +01:00
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: List Xcode versions
run: ls -n /Applications/ | grep Xcode*
- name: Build macOS
run: make mac-app
env:
DEVELOPER_DIR: /Applications/Xcode_12.3.app/Contents/Developer
2021-01-19 23:10:14 +01:00
BUILD_NUMBER: ${{ github.run_id }}
2021-01-06 23:27:51 +01:00
- name: Upload macOS package
uses: actions/upload-artifact@v1
with:
2021-01-26 19:32:36 +01:00
name: focalboard-mac.zip
path: ${{ github.workspace }}/mac/dist/focalboard-mac.zip
2021-01-06 23:27:51 +01:00