Skip to content

Commit

Permalink
Fix err in action and Trigger push
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshkal committed Aug 4, 2024
1 parent 7c4177a commit d3a2cf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
if: steps.changes.outputs.src == 'true'
run: |
echo "tag=$(./.github/get_version.sh ./.github/versions/${{ matrix.policy.version-file }})" >> $GITHUB_ENV
echo ${{ env.tag }}
echo "tag=${{ env.tag }}"
- name: Install genval
if: steps.changes.outputs.src == 'true'
run: |
Expand Down
2 changes: 1 addition & 1 deletion genval/modules/cuemod-k8s:v1.30/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ This directory structure serves as a foundational workspace for generating and v

- `input` directory: This directory is designated for storing all manifests that users intend to generate from or validate against specific Cuelang policies. When using the `genval cue` command, this directory should be specified with the `--reqinput` flag.

- `policy` directory: This directory is reserved for maintaining **Cuelang** definitions/policies, referred to as policies in the context of Genval. When executing the `genval cue` command, this directory should be provided with the `--policy` flag. The policy dir also containes all the dependencies required for writing policies for a specified technology via `genval cuemod init` command.
- `policy` directory: This directory is reserved for maintaining **Cuelang** definitions/policies, referred to as policies in the context of Genval. When executing the `genval cue` command, this directory should be provided with the `--policy` flag. The policy dir also containes all the dependencies required for writing policies for a specified technology via `genval cuemod init --tool` command.

0 comments on commit d3a2cf0

Please sign in to comment.