pull/74/head
gowridurgad 10 months ago
parent 2526d7162f
commit a9ad58d926

@ -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
@ -118,7 +118,7 @@ jobs:
Write-Host "Unsupported tool - ${{ inputs.tool-name }}" Write-Host "Unsupported tool - ${{ inputs.tool-name }}"
exit 1 exit 1
} }
7z.exe x "$artifactName" -y | Out-Null 7z.exe x "$artifactName" -y | Out-Null
} else { } else {
$artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz" $artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz"
@ -220,6 +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