Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit e5b18c9

Browse files
committed
Minor: Fix casing of "ASan"
1 parent 22ba6cd commit e5b18c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
with:
4747
script: |
4848
const latestDevCommit = "${{ steps.latest_commit.outputs.commit }}"
49-
const latest34Asan = "${{ steps.latest_commit_3_4_asan.outputs.commit }}"
49+
const latest34ASan = "${{ steps.latest_commit_3_4_asan.outputs.commit }}"
5050
const { owner, repo } = context.repo
5151
let { data: release } = await github.rest.repos.getLatestRelease({ owner, repo })
5252
const firstLine = release.body.split('\n')[0]
5353
const latestReleaseCommit = firstLine.split('@')[1]
5454
console.log(`Latest release commit: ${latestReleaseCommit}`)
5555
console.log(`Latest ruby commit: ${latestDevCommit}`)
56-
console.log(`Latest 3.4-asan: ${latest34Asan}`)
56+
console.log(`Latest 3.4-asan: ${latest34ASan}`)
5757
core.setOutput('should_build', latestReleaseCommit !== latestDevCommit)
5858
core.setOutput('previous_release', release.tag_name)
5959
- name: Compute build and reuse matrix

0 commit comments

Comments
 (0)