Skip to content

Commit

Permalink
ci(pull-request): fix context references
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeratoxx committed Mar 2, 2024
1 parent 2d5c821 commit cf35e84
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pull-request-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
steps:
- name: Get repo information
run: |
echo "github.base_ref: {{ github.base_ref }}"
echo "ref: {{ github.ref }}"
echo "ref: {{ github.ref_name }}"
echo "event ref_name: {{ github.event.ref_name }}"
echo "event ref_name: {{ github.event.ref }}"
echo "event ref_name: {{ github.event.pull_request.number }}"
echo "event ref_name: {{ github.event.before }}"
echo "event ref_name: {{ github.event.after }}"
echo "github.base_ref: ${{ github.base_ref }}"
echo "ref: ${{ github.ref }}"
echo "ref: ${{ github.ref_name }}"
echo "event ref_name: ${{ github.event.ref_name }}"
echo "event ref_name: ${{ github.event.ref }}"
echo "event ref_name: ${{ github.event.pull_request.number }}"
echo "event ref_name: ${{ github.event.before }}"
echo "event ref_name: ${{ github.event.after }}"
bundle:
runs-on: ubuntu-22.04
Expand All @@ -24,7 +24,7 @@ jobs:
steps:
- name: Set variable for pull request version
run: |
echo "PR_VERSION=snapshot-pr-#{{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "PR_VERSION=snapshot-pr-#${{ github.event.pull_request.number }}" >> $GITHUB_ENV
- name: Bundle snapshot
uses: ./.github/workflows/bundle.yml
Expand Down

0 comments on commit cf35e84

Please sign in to comment.