Skip to main content
The Determine Artifact URL action (DetermineArtifactUrl) determines the appropriate artifact URL to use for building and testing Business Central apps.

Usage

- uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@main
  with:
    project: '.'

Inputs

project
string
default:"."
Project folder to determine artifact URL for. Use . for the root project.
shell
string
default:"powershell"
Shell in which you want to run the action. Options: powershell or pwsh.

Example

Determine artifact URL in a build workflow:
name: Build
on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v4
      
      - name: Determine Artifacts
        uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@main
        with:
          project: '.'
This action analyzes your project settings and determines the correct Business Central artifact URL based on your configuration, such as version, country, and other project-specific settings.

Build docs developers (and LLMs) love