-
Notifications
You must be signed in to change notification settings - Fork 2
78 lines (71 loc) · 2.33 KB
/
sam_package_code.yml
File metadata and controls
78 lines (71 loc) · 2.33 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: sam package code
on:
workflow_call:
inputs:
pinned_image:
type: string
required: true
jobs:
sam_package_code:
runs-on: ubuntu-22.04
container:
image: ${{ inputs.pinned_image }}
options: --user 1001:1001 --group-add 128
defaults:
run:
shell: bash
permissions:
id-token: write
contents: read
packages: read
steps:
- name: copy .tool-versions
run: |
cp /home/vscode/.tool-versions "$HOME/.tool-versions"
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ env.BRANCH_NAME }}
- name: Setting up .npmrc
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc
- name: make install
run: |
make install
make compile
- shell: bash
name: package code
run: |
rm -rf .aws-sam
export PATH=$PATH:$PWD/node_modules/.bin
make sam-build
cp Makefile .aws-sam/build/
cp samconfig_package_and_deploy.toml .aws-sam/build/
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
name: upload build artifact
with:
name: packaged_code
path: |
.aws-sam/build
packages/getSecretLayer/lib/get-secrets-layer.zip
packages/specification/dist/prescriptions-for-patients.resolved.json
SAMtemplates/state_machines/GetMyPrescriptionsStateMachine.asl.json
- shell: bash
name: package sandbox code
run: |
rm -rf .aws-sam
export PATH=$PATH:$PWD/node_modules/.bin
make sam-build-sandbox
cp Makefile .aws-sam/build/
cp samconfig_package_and_deploy.toml .aws-sam/build/
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
name: upload sandbox build artifact
with:
name: packaged_sandbox_code
path: |
.aws-sam/build
packages/getSecretLayer/lib/get-secrets-layer.zip
packages/specification/dist/prescriptions-for-patients.resolved.json