-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (38 loc) · 1.19 KB
/
_policy_container.yaml
File metadata and controls
45 lines (38 loc) · 1.19 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
name: Policy Container
on:
workflow_call:
jobs:
build_publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-policy" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3.4.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup OPA
uses: open-policy-agent/setup-opa@v2.2.0
with:
version: latest
- name: Build OPA Policy
run: >
opa
build
--bundle policy
--revision ${{ github.ref_name }}
--ignore *_test.rego
- name: Publish OPA Bundle
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
run: >
oras
push
${{ env.IMAGE_REPOSITORY }}:${{ github.ref_name }}
bundle.tar.gz:application/vnd.oci.image.layer.v1.tar+gzip