replace path
This commit is contained in:
parent
d80e2285eb
commit
8364115ae5
3 changed files with 9 additions and 9 deletions
4
.github/workflows/build-mac.yml
vendored
4
.github/workflows/build-mac.yml
vendored
|
@ -13,10 +13,10 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Replace token 1
|
- name: Replace token 1
|
||||||
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
- name: Replace token 2
|
- name: Replace token 2
|
||||||
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
- name: npm install
|
- name: npm install
|
||||||
run: cd webapp; npm install --no-optional
|
run: cd webapp; npm install --no-optional
|
||||||
|
|
10
.github/workflows/build-ubuntu.yml
vendored
10
.github/workflows/build-ubuntu.yml
vendored
|
@ -11,14 +11,14 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: npm install
|
|
||||||
run: cd webapp; npm install --no-optional
|
|
||||||
|
|
||||||
- name: Replace token 1
|
- name: Replace token 1
|
||||||
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
- name: Replace token 2
|
- name: Replace token 2
|
||||||
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
|
- name: npm install
|
||||||
|
run: cd webapp; npm install --no-optional
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
|
|
4
.github/workflows/build-win.yml
vendored
4
.github/workflows/build-win.yml
vendored
|
@ -12,10 +12,10 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Replace token 1
|
- name: Replace token 1
|
||||||
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
- name: Replace token 2
|
- name: Replace token 2
|
||||||
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/src/index.ts
|
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
|
||||||
|
|
||||||
- name: win-node-env
|
- name: win-node-env
|
||||||
run: npm install -g win-node-env
|
run: npm install -g win-node-env
|
||||||
|
|
Loading…
Reference in a new issue