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

56 lines
1.4 KiB
YAML
Raw Normal View History

2021-01-06 23:27:51 +01:00
name: Build-Ubuntu
on: workflow_dispatch
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: npm install
run: cd webapp; npm install --no-optional
2021-01-06 23:27:51 +01:00
2021-01-18 22:57:27 +01:00
- name: Replace token 1
uses: jacobtomlinson/gha-find-replace@master
with:
find: "placeholder_rudder_dataplane_url"
replace: "${{ secrets.RUDDER_DATAPLANE_URL }}"
include: server/services/telemetry/telemetry.go
- name: Replace token 2
uses: jacobtomlinson/gha-find-replace@master
with:
find: "placeholder_rudder_key"
replace: "${{ secrets.RUDDER_DEV_KEY }}"
include: server/services/telemetry/telemetry.go
2021-01-18 22:04:25 +01:00
2021-01-06 23:27:51 +01:00
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: apt-get libgtk-3-dev
run: sudo apt-get install libgtk-3-dev
- name: apt-get libwebkit2gtk-4.0-dev
run: sudo apt-get install libwebkit2gtk-4.0-dev
- name: Build Linux server and app
run: make server-linux-package linux-app
- name: Upload server package
uses: actions/upload-artifact@v1
with:
name: octo-linux-amd64.tar.gz
path: ${{ github.workspace }}/dist/octo-linux-amd64.tar.gz
- name: Upload app package
uses: actions/upload-artifact@v1
with:
name: tasks-linux.tar.gz
path: ${{ github.workspace }}/linux/dist/tasks-linux.tar.gz