Skip to content

Commit

Permalink
Merge pull request #124 from liprec/develop
Browse files Browse the repository at this point in the history
🚀 v1.5.11
  • Loading branch information
liprec committed May 15, 2023
2 parents 35026e5 + a46c279 commit ad345c9
Show file tree
Hide file tree
Showing 22 changed files with 12 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build, test and pack tasks
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install tfx-cli
run: |
npm install tfx-cli
Expand All @@ -24,10 +24,10 @@ jobs:
if: ${{ endsWith(github.ref, 'main') }}
id: extract_version
run: |
node -e "const v = require('.\\vss-extension.json').version;console.log('::set-output name=version::' + v);"
node -e "const v = require('.\\vss-extension.json').version;console.log('version=' + v);" >> $env:GITHUB_OUTPUT
- name: store extension - production version
if: ${{ endsWith(github.ref, 'main') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: liprec.vsts-release-aas-${{ steps.extract_version.outputs.version }}
path: |
Expand All @@ -41,10 +41,10 @@ jobs:
if: ${{ endsWith(github.ref, 'develop') }}
id: extract_version_preview
run: |
node -e "const v = require('.\\vss-extension-preview.json').version;console.log('::set-output name=version::' + v);"
node -e "const v = require('.\\vss-extension-preview.json').version;console.log('version=' + v);" >> $env:GITHUB_OUTPUT
- name: store extension - preview version
if: ${{ endsWith(github.ref, 'develop') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: liprec.vsts-release-aas-preview-${{ steps.extract_version_preview.outputs.version }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion deploy-aas-db/v1/VstsAzureRestHelperExtra_.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Get-AzureRmAnalysisServicesResourceId {

Write-Verbose "Get Resource Groups"
$method = "GET"
$uri = "$($endpoint.Url)/subscriptions/$subscriptionId/resources?api-version=$apiVersion"
$uri = "$($endpoint.Url)/subscriptions/$subscriptionId/resources?api-version=$apiVersion&$filter=resourceType eq '$serverType'"
$headers = @{Authorization = ("{0} {1}" -f $accessToken.token_type, $accessToken.access_token) }

do {
Expand Down
Binary file not shown.
Binary file modified deploy-aas-db/v1/assemblies/Microsoft.AnalysisServices.Core.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified deploy-aas-db/v1/assemblies/Microsoft.AnalysisServices.dll
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions deploy-aas-db/v1/deploy-aas-db.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ switch ($loginType) {
}
"inherit" {
Write-Verbose "Using endpoint credentials"

if ($isPBI) {
$identifier = ("app:{0}@{1}" -f $endpoint.Auth.parameters.applicationId, $endpoint.Auth.parameters.tenantId)
$secret = ConvertTo-SecureString -String ($endpoint.Auth.parameters.clientSecret) -AsPlainText -Force
Expand Down
2 changes: 1 addition & 1 deletion deploy-aas-db/v1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"version": {
"Major": "1",
"Minor": "5",
"Patch": "10"
"Patch": "11"
},
"minimumAgentVersion": "2.115.0",
"groups": [
Expand Down
2 changes: 1 addition & 1 deletion execute-aas-tmsl/v1/VstsAzureRestHelperExtra_.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Get-AzureRmAnalysisServicesResourceId {

Write-Verbose "Get Resource Groups"
$method = "GET"
$uri = "$($endpoint.Url)/subscriptions/$subscriptionId/resources?api-version=$apiVersion"
$uri = "$($endpoint.Url)/subscriptions/$subscriptionId/resources?api-version=$apiVersion&$filter=resourceType eq '$serverType'"
$headers = @{Authorization = ("{0} {1}" -f $accessToken.token_type, $accessToken.access_token) }

do {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified execute-aas-tmsl/v1/assemblies/Microsoft.AnalysisServices.dll
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion execute-aas-tmsl/v1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"version": {
"Major": "1",
"Minor": "5",
"Patch": "10"
"Patch": "11"
},
"minimumAgentVersion": "2.115.0",
"groups": [
Expand Down
2 changes: 1 addition & 1 deletion vss-extension-preview.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "vsts-release-aas-preview",
"version": "1.5.10",
"version": "1.5.11",
"name": "Analysis Service (Preview)",
"publisher": "liprec",
"public": false,
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "vsts-release-aas",
"version": "1.5.10",
"version": "1.5.11",
"name": "Azure Analysis Service",
"publisher": "liprec",
"public": true,
Expand Down

0 comments on commit ad345c9

Please sign in to comment.