Skip to content

Commit

Permalink
ci: Add deb verification
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax committed Aug 14, 2024
1 parent eb15e67 commit f8664a1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/verify-debs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Verify

permissions:
contents: read

on:
pull_request:
push:
branches:
- main

concurrency:
group: >-
${{ github.event.inputs.head_ref || github.run_id }}
jobs:
verify:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- run: |
DEV_COMMIT_ID=$(git ls-remote https://github.com/envoyproxy/envoy HEAD)
echo "DEV_COMMIT_ID=${DEV_COMMIT_ID}" >> $GITHUB_ENV
- run: |
bazel run --config=ci \
--action_env="DEV_COMMIT_ID=${DEV_COMMIT_ID}" \
--host_action_env="DEV_COMMIT_ID=${DEV_COMMIT_ID}" \
:verify_debs

0 comments on commit f8664a1

Please # to comment.