Increment Version Number in [releases/25.x] #20
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: New Version Number in main branch. Use Major.Minor (optionally add .Build for versioningstrategy 3) for absolute change, or +1, +0.1 (or +0.0.1 for versioningstrategy 3) incremental change. | |
required: false | |
default: '' | |
skipUpdatingDependencies: | |
description: Skip updating dependency version numbers in all apps. | |
type: boolean | |
default: false | |
directCommit: | |
description: Direct Commit? | |
type: boolean | |
default: false | |
useGhTokenWorkflow: | |
description: Use GhTokenWorkflow for PR/Commit? | |
type: boolean | |
default: false | |
defaults: | |
run: | |
shell: powershell | |
env: | |
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }} | |
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }} | |
jobs: | |
IncrementVersionNumber: | |
needs: [ ] | |
runs-on: [ windows-latest ] | |
permissions: | |
actions: read | |
contents: write | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Dump Workflow Information | |
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v6.3 | |
with: | |
shell: powershell | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Initialize the workflow | |
id: init | |
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v6.3 | |
with: | |
shell: powershell | |
- name: Read settings | |
uses: microsoft/AL-Go-Actions/ReadSettings@v6.3 | |
with: | |
shell: powershell | |
- name: Read secrets | |
id: ReadSecrets | |
uses: microsoft/AL-Go-Actions/ReadSecrets@v6.3 | |
with: | |
shell: powershell | |
gitHubSecrets: ${{ toJson(secrets) }} | |
getSecrets: 'TokenForPush' | |
useGhTokenWorkflowForPush: '${{ github.event.inputs.useGhTokenWorkflow }}' | |
- name: Increment Version Number | |
uses: microsoft/AL-Go-Actions/IncrementVersionNumber@v6.3 | |
with: | |
shell: powershell | |
token: ${{ steps.ReadSecrets.outputs.TokenForPush }} | |
projects: ${{ github.event.inputs.projects }} | |
versionNumber: ${{ github.event.inputs.versionNumber }} | |
skipUpdatingDependencies: ${{ github.event.inputs.skipUpdatingDependencies }} | |
directCommit: ${{ github.event.inputs.directCommit }} | |
- name: Finalize the workflow | |
if: always() | |
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v6.3 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
shell: powershell | |
telemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} | |
currentJobContext: ${{ toJson(job) }} |