We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c6373e commit 34214bbCopy full SHA for 34214bb
2 files changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Build
2
+
3
+permissions:
4
+ contents: read
5
6
+on:
7
+ pull_request:
8
+ push:
9
+ branches:
10
+ - main
11
12
+concurrency:
13
+ group: >-
14
+ ${{ github.event.inputs.head_ref || github.run_id }}
15
16
17
+jobs:
18
+ build:
19
+ runs-on: ubuntu-24.04
20
+ if: github.repository_owner == 'envoyproxy'
21
+ steps:
22
+ - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
23
+ - run: |
24
+ ./build-repository.sh
build-repository.sh
@@ -27,6 +27,7 @@ underline () {
27
}
28
29
import_public_key () {
30
+ mkdir -p ~/.gnupg
31
touch ~/.gnupg/trustedkeys.gpg
32
echo -e "$(underline $(bold "Import maintainers public key: checksum verification"))"
33
gpg --import envoy-maintainers-public.key
0 commit comments