We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2eda44 commit 436c7f5Copy full SHA for 436c7f5
.github/workflows/release.yml
@@ -5,6 +5,9 @@ on:
5
tags:
6
- "v*.*.*"
7
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
test:
13
uses: ./.github/workflows/test.yml
@@ -45,6 +48,15 @@ jobs:
45
48
publish-lambda-layers:
46
49
runs-on: ubuntu-latest
47
50
steps:
51
+ - uses: hashicorp/[email protected]
52
+ with:
53
+ url: ${{ secrets.VAULT_ADDR }}
54
+ method: approle
55
+ roleId: ${{ secrets.VAULT_ROLE_ID }}
56
+ secretId: ${{ secrets.VAULT_SECRET_ID }}
57
+ secrets: |
58
+ secret/observability-team/ci/service-account/apm-agent-python access_key_id | AWS_ACCESS_KEY_ID ;
59
+ secret/observability-team/ci/service-account/apm-agent-python secret_access_key | AWS_SECRET_ACCESS_KEY
60
- name: Build lambda layer zip
61
run: ./dev-utils/make-distribution.sh
62
- name: Publish lambda layers to AWS
0 commit comments