Skip to content

Commit

Permalink
Added quotes violation of action lint
Browse files Browse the repository at this point in the history
Signed-off-by: jagpreetsinghsasan <[email protected]>
jagpreetsinghsasan committed Sep 7, 2023
1 parent a689ee0 commit 2efea50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -71,8 +71,8 @@ jobs:
- name: Run optimized cli script
id: optimize-ci
run: |
OPTIMIZED_CI_OUTPUT=$(node tools/optimize-ci.js ${{ steps.changed-files.outputs.all_changed_files }})
echo "OPTIMIZED_CI_OUTPUT=$OPTIMIZED_CI_OUTPUT" >> $GITHUB_OUTPUT
OPTIMIZED_CI_OUTPUT="$(node tools/optimize-ci.js ${{ steps.changed-files.outputs.all_changed_files }})"
echo "OPTIMIZED_CI_OUTPUT=$OPTIMIZED_CI_OUTPUT" >> "$GITHUB_OUTPUT"
- name: List the changed-files
run: echo "The output is ${{ steps.optimize-ci.outputs.OPTIMIZED_CI_OUTPUT }}"
@@ -142,7 +142,7 @@ jobs:
- name: Set env.GIT_INDEX_FILE_COUNT
id: set_env_git_index_file_count
run: |
echo "GIT_INDEX_FILE_COUNT=$(git status --porcelain | wc -l)" >> $GITHUB_ENV
echo "GIT_INDEX_FILE_COUNT=$(git status --porcelain | wc -l)" >> "$GITHUB_ENV"
- name: Print env.GIT_INDEX_FILE_COUNT
id: print_env_git_index_file_count
@@ -1986,7 +1986,7 @@ jobs:
- name: npm_install_@devcontainers/[email protected]
run: npm install -g @devcontainers/[email protected]
- name: npx_yes_devcontainers_cli_build
run: npx --yes @devcontainers/[email protected] build --workspace-folder=./ --log-level=trace --push=false --config=./.devcontainer/devcontainer.json --image-name=$IMAGE_NAME
run: npx --yes @devcontainers/[email protected] build --workspace-folder=./ --log-level=trace --push=false --config=./.devcontainer/devcontainer.json --image-name="$IMAGE_NAME"
ghcr-examples-carbon-accounting:
needs: get-diff
if: contains(needs.get-diff.outputs.all-changed-files, 'examples/carbon-accounting')

0 comments on commit 2efea50

Please sign in to comment.