test ENTRYPOINT policy build #7
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: Infrafile-ci | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'genval/defaultpolicies/rego/infrafile_policies/**' | |
tags: | |
- 'v*' | |
if: | | |
(startswith(github.ref, 'refs/tags/')) && | |
github.ref == 'refs/head/main' && | |
contains(github.event.head_commit.modified, 'genval/defaultpolicies/rego/infrafile_policies/**') | |
permissions: | |
contents: write | |
security-events: write | |
# Optional: allow read access to pull request. Use with `only-new-issues` option. | |
packages: write | |
jobs: | |
push-artifact: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
cache: false | |
- name: inetall genval | |
run: go install github.com/intelops/genval@main | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: push-rego-policies | |
run: | | |
genval artifact push --reqinput ./genval/defaultpolicies/rego/infrafile_policies/k8s/ \ | |
--dest oci://ghcr.io/intelops/policyhub/genval/infrafile_policies:v0.0.1 \ | |
--annotations="authors=intelops Inc." |