Rename workflows, only make policy releases on tags #1
Workflow file for this run
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_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 & Publish OPA Policy | |
run: opa build ./org-policy | |
- name: Publish OPA Policy | |
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 |