Bump the opentelemetry group in /bundler with 4 updates #1187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Policy Container | |
on: | |
push: | |
pull_request: | |
jobs: | |
build_bundle: | |
# 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 | |
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 |