Skip to content

Commit

Permalink
Rename run command var name assignemnt
Browse files Browse the repository at this point in the history
Given that the run command run in a shell environment, let's use
underscore intead of minus sign.
  • Loading branch information
yuumasato committed Feb 19, 2024
1 parent 32bebc3 commit e24b49e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/k8s-content-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Get PR number
runs-on: ubuntu-latest
outputs:
pr-number: ${{ steps.pr_number.outputs.pr-number }}
pr-number: ${{ steps.pr_number.outputs.pr_number }}
steps:
- name: 'Download artifacts'
uses: actions/github-script@v7
Expand All @@ -38,7 +38,7 @@ jobs:
- name: 'Read PR number'
id: pr_number
run: |
echo "pr-number=$(cat pr_number)" >> "$GITHUB_OUTPUT"
echo "pr_number=$(cat pr_number)" >> "$GITHUB_OUTPUT"
container-main:
needs:
Expand Down

0 comments on commit e24b49e

Please sign in to comment.