Increment Version Number in [releases/24.x] #1
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: ' Increment Version Number' | |
run-name: "Increment Version Number in [${{ github.ref_name }}]" | |
on: | |
workflow_dispatch: | |
inputs: | |
projects: | |
description: Comma-separated list of project name patterns if the repository is setup for multiple projects (default is * for all projects) | |
required: false | |
default: '*' | |
versionNumber: | |
description: Updated Version Number. Use Major.Minor for absolute change, use +Major.Minor for incremental change. | |
required: true | |
directCommit: | |
description: Direct Commit? | |
type: boolean | |
default: false | |
useGhTokenWorkflow: | |
description: Use GhTokenWorkflow for PR/Commit? | |
type: boolean | |
default: false | |
permissions: | |
contents: write | |
pull-requests: write | |
defaults: | |
run: | |
shell: powershell | |
env: | |
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }} | |
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }} | |
jobs: | |
IncrementVersionNumber: | |
needs: [ ] | |
runs-on: [ windows-latest ] | |
steps: | |
- name: Dump Workflow Information | |
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Initialize the workflow | |
id: init | |
uses: microsoft/AL-Go/Actions/WorkflowInitialize@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
eventId: "DO0096" | |
- name: Read settings | |
uses: microsoft/AL-Go/Actions/ReadSettings@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
- name: Read secrets | |
id: ReadSecrets | |
uses: microsoft/AL-Go/Actions/ReadSecrets@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
gitHubSecrets: ${{ toJson(secrets) }} | |
getSecrets: 'TokenForPush' | |
useGhTokenWorkflowForPush: '${{ github.event.inputs.useGhTokenWorkflow }}' | |
- name: Increment Version Number | |
uses: microsoft/AL-Go/Actions/IncrementVersionNumber@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
token: ${{ steps.ReadSecrets.outputs.TokenForPush }} | |
parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} | |
projects: ${{ github.event.inputs.projects }} | |
versionNumber: ${{ github.event.inputs.versionNumber }} | |
directCommit: ${{ github.event.inputs.directCommit }} | |
- name: Finalize the workflow | |
if: always() | |
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@8dfde66bdf7b91d0d56d9a97f6f1688e444e067d | |
with: | |
shell: powershell | |
eventId: "DO0096" | |
telemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} |