From 66b701f3d3110eeb1c00191f1eaf2a4b99c3272e Mon Sep 17 00:00:00 2001 From: Sarapuce Date: Fri, 5 Jan 2024 14:29:19 +0100 Subject: [PATCH] feat(workflow): change file name --- .github/workflows/release.yaml | 6 +++--- .../custom-falco-rules.yaml.yaml => custom_falco_rules.yaml | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename cool-falco-rules/custom-falco-rules.yaml.yaml => custom_falco_rules.yaml (100%) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e43b11c..9ca5774 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,7 +11,7 @@ jobs: packages: write env: - RULESET_FILE: nsenter.yaml + RULESET_FILE: custom_falco_rules.yaml # Used to setup Auth and OCI artifact location OCI_REGISTRY: ghcr.io # Assuming we are in the main branch, our OCI artifact will @@ -40,7 +40,7 @@ jobs: - name: Checkout Rules Repo uses: actions/checkout@v3 with: - path: rules + path: / - name: Upload OCI artifacts to GitHub packages run: | @@ -49,7 +49,7 @@ jobs: --type rulesfile \ --version ${OCI_ARTIFACT_VERSION} \ ${OCI_REGISTRY}/${GITHUB_REPOSITORY}/${OCI_ARTIFACT_NAME}:${OCI_ARTIFACT_VERSION} \ - rules/${RULESET_FILE} + /${RULESET_FILE} env: FALCOCTL_REGISTRY_AUTH_BASIC: ${{ env.OCI_REGISTRY }},${{ github.repository_owner }},${{ secrets.GITHUB_TOKEN }} diff --git a/cool-falco-rules/custom-falco-rules.yaml.yaml b/custom_falco_rules.yaml similarity index 100% rename from cool-falco-rules/custom-falco-rules.yaml.yaml rename to custom_falco_rules.yaml