Skip to content

Commit

Permalink
[main] Update AL-Go System Files from freddydk/AL-Go@customize - 1cc3…
Browse files Browse the repository at this point in the history
…a947178e3c4f271500dceb18ab69f3597c7a
  • Loading branch information
freddydk committed Aug 11, 2024
1 parent 35b1693 commit 0b88a91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/AL-Go-Settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"DeliverToStorage": {
"CreateContainerIfNotExist": true
},
"templateSha": "563c22f9824d37f40b3509174e5f05d6e8332a9b",
"templateSha": "1cc3a947178e3c4f271500dceb18ab69f3597c7a",
"RepoVersion": "1.0",
"artifact": "//24.0//first",
"vsixFile": "latest",
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:

DeployALDoc:
needs: [ Initialization, Build ]
if: (!cancelled()) && needs.Build.result == 'Success' && needs.Initialization.outputs.generateALDocArtifact == 1 && github.ref_name == 'main'
if: (!cancelled()) && (needs.Build.result == 'success' || needs.Build.result == 'skipped') && needs.Initialization.outputs.generateALDocArtifact == 1 && github.ref_name == 'main'
runs-on: [ windows-latest ]
name: Deploy Reference Documentation
permissions:
Expand Down Expand Up @@ -381,12 +381,3 @@ jobs:
shell: powershell
telemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }}
currentJobContext: ${{ toJson(job) }}

CustomJob-CreateBuildTag:
needs: [ Initialization, Build ]
if: (!cancelled()) && (needs.Build.result == 'success' || needs.Build.result == 'skipped')
runs-on: [ ubuntu-latest ]
steps:
- name: Create Tag
run: |
Write-Host "Create Tag"

0 comments on commit 0b88a91

Please sign in to comment.