-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 1.47 KB
/
policy-container.yml
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
name: Policy Container
on:
push:
pull_request:
jobs:
build_publish:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout source
uses: actions/[email protected]
- 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/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup OPA
uses: open-policy-agent/[email protected]
with:
version: latest
- name: Build OPA Policy # If this is a tag, use it as a revision string
run: opa build ./org-policy -r ${{ github.ref_name }}
- name: Test OPA Bundle
run: opa test -b bundle.tar.gz
- name: Publish OPA Bundle
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
run: oras push ${{ env.IMAGE_REPOSITORY }}:${{ github.ref_name }} --config ./org-policy/config.json:application/vnd.oci.image.config.v1+json bundle.tar.gz:application/vnd.oci.image.layer.v1.tar+gzip