[main] Create build tag #2593
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Create Build Tag' | |
on: | |
workflow_run: | |
workflows: [' CI/CD'] | |
types: [completed] | |
branches: [ 'main', 'releases/*' ] | |
run-name: "[${{ github.ref_name }}] Create build tag" | |
permissions: read-all | |
jobs: | |
CreateTag: | |
if: github.event.workflow_run.conclusion == 'success' | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Get Build Version | |
id: GetBuildVersion | |
env: | |
buildNumber: ${{ github.event.workflow_run.run_number }} | |
run: | | |
Import-Module ".\build\scripts\EnlistmentHelperFunctions.psm1" | |
$majorMinor = Get-ConfigValue -ConfigType "AL-GO" -Key RepoVersion | |
$buildVersion = "$($majorMinor).$($env:buildNumber)" | |
Write-Host "Build Version: $buildVersion" | |
Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "BuildVersion=$buildVersion" | |
- name: Create version tag | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
env: | |
BuildVersion: ${{ steps.GetBuildVersion.outputs.BuildVersion}} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const {BuildVersion} = process.env | |
const tag = `refs/tags/builds/${BuildVersion}` | |
console.log(`Creating tag: ${tag}`) | |
github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: tag, | |
sha: context.sha | |
}); |