pull/74/head
gowridurgad 10 months ago
parent a9ad58d926
commit 458ef093c9

@ -20,7 +20,7 @@ on:
description: "Whether to publish releases" description: "Whether to publish releases"
required: true required: true
type: boolean type: boolean
defaults: defaults:
run: run:
shell: pwsh shell: pwsh
@ -66,7 +66,7 @@ jobs:
./builders/build-${{ inputs.tool-name }}.ps1 -Version ${{ inputs.tool-version }} ` ./builders/build-${{ inputs.tool-name }}.ps1 -Version ${{ inputs.tool-version }} `
-Platform ${{ matrix.platform }} ` -Platform ${{ matrix.platform }} `
-Architecture ${{ matrix.architecture }} -Architecture ${{ matrix.architecture }}
- name: Publish artifact - name: Publish artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
@ -112,7 +112,7 @@ jobs:
if ('${{ matrix.platform }}' -eq 'win32') { if ('${{ matrix.platform }}' -eq 'win32') {
if ('${{ inputs.tool-name }}' -eq 'node') { if ('${{ inputs.tool-name }}' -eq 'node') {
$artifactName = "${{ env.ARTIFACT_NAME }}.7z" $artifactName = "${{ env.ARTIFACT_NAME }}.7z"
} elseif ('${{ inputs.tool-name }}' -eq 'go') { } elseif ('${{ inputs.tool-name }}' -eq 'go') {
$artifactName = "${{ env.ARTIFACT_NAME }}.zip" $artifactName = "${{ env.ARTIFACT_NAME }}.zip"
} else { } else {
Write-Host "Unsupported tool - ${{ inputs.tool-name }}" Write-Host "Unsupported tool - ${{ inputs.tool-name }}"
@ -171,7 +171,7 @@ jobs:
- name: Generate release body - name: Generate release body
id: generate-release-body id: generate-release-body
run: | run: |
if ('${{ inputs.tool-name }}' -eq 'node') { if ('${{ inputs.tool-name }}' -eq 'node') {
$releaseBody = 'Node.js ${{ inputs.tool-version }}' $releaseBody = 'Node.js ${{ inputs.tool-version }}'
} else { } else {
@ -200,7 +200,7 @@ jobs:
$hashString = "$actualHash $($packageObj.Name)" $hashString = "$actualHash $($packageObj.Name)"
Write-Host "$hashString" Write-Host "$hashString"
Add-Content -Path ./hashes.sha256 -Value "$hashString" Add-Content -Path ./hashes.sha256 -Value "$hashString"
} }
- name: Upload release assets - name: Upload release assets
uses: actions/github-script@v6 uses: actions/github-script@v6
@ -220,7 +220,7 @@ jobs:
data: fs.lstatSync(artifactDir).isDirectory() ? fs.readFileSync(`./${artifactDir}/${artifactName}`) : fs.readFileSync(`./${artifactName}`).toString() data: fs.lstatSync(artifactDir).isDirectory() ? fs.readFileSync(`./${artifactDir}/${artifactName}`) : fs.readFileSync(`./${artifactName}`).toString()
}); });
} }
trigger_pr: trigger_pr:
name: Trigger "Create Pull Request" workflow name: Trigger "Create Pull Request" workflow
needs: publish_release needs: publish_release

Loading…
Cancel
Save