-
Notifications
You must be signed in to change notification settings - Fork 14
52 lines (45 loc) · 1.47 KB
/
v3_klickeruzhprod-response-processor(qa).yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Build and deploy func-response-processor to Function App (QA)
on:
push:
branches:
- 'v3'
- 'v3*'
paths:
- 'apps/func-response-processor/**'
- '.github/workflows/v3_klickeruzhprod-response-processor**'
workflow_dispatch:
env:
AZURE_FUNCTIONAPP_PACKAGE_PATH: 'apps/func-response-processor'
NODE_VERSION: '20.17.0'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v2
- name: Setup Node ${{ env.NODE_VERSION }} Environment
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v2
with:
version: 9.9.0
- name: 'Resolve Project Dependencies Using Npm'
shell: bash
run: |
pnpm dlx turbo@2.1.0 prune --scope @klicker-uzh/func-response-processor
pushd out
echo "node-linker=hoisted" > .npmrc
pnpm install --frozen-lockfile --ignore-scripts --strict-peer-dependencies
pnpm run build
mv apps/func-response-processor apps/func
mv apps/func/host.json .
popd
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'klickeruzhprod-response-processor'
slot-name: 'qa'
package: out
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_36EB12B3E64C4803BA587F03A5F2E446 }}