Skip to content

Commit

Permalink
Merge pull request #11604 from yuumasato/assign_id_to_step
Browse files Browse the repository at this point in the history
k8s image content from PRs: Fix `id` in job step
  • Loading branch information
rhmdnd authored Feb 19, 2024
2 parents 39a59d3 + e24b49e commit 952cd7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 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.read-pr-number.outputs.pr-number }}
pr-number: ${{ steps.pr_number.outputs.pr_number }}
steps:
- name: 'Download artifacts'
uses: actions/github-script@v7
Expand All @@ -36,8 +36,9 @@ jobs:
- name: 'Unzip artifact'
run: unzip pr_number.zip
- 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 952cd7c

Please sign in to comment.