42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: Build-Windows
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
|
|
windows:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Replace tokens 1
|
|
run: perl -pi -e 's/placeholder_rudder_dataplane_url/"$ENV{RUDDER_DATAPLANE_URL}"/' ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
|
env:
|
|
RUDDER_DATAPLANE_URL: ${{ secrets.RUDDER_DATAPLANE_URL }}
|
|
|
|
- name: Replace tokens 2
|
|
run: perl -pi -e 's/placeholder_rudder_key/"$ENV{RUDDER_KEY}"/' ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
|
env:
|
|
RUDDER_KEY: ${{ secrets.RUDDER_DEV_KEY }}
|
|
|
|
- name: win-node-env
|
|
run: npm install -g win-node-env
|
|
|
|
- name: npm install
|
|
run: cd webapp; npm install --no-optional
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15
|
|
|
|
- name: Build Windows app
|
|
run: make win-app
|
|
|
|
- name: Upload app package
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: tasks-win.zip
|
|
path: ${{ github.workspace }}/win/dist/tasks-win.zip
|