This is the code repository and issue tracker for Tabular Editor 2.X (free, open-source version). This repository is being maintained by Daniel Otykier.
I'm trying to deploy a bim file in my repo through TE to PowerBI, i've followed your doc and tested differents ways to setup the connection but i still have a problem deploying my BIM file as a new dataset to PowerBI, my action below
The error below says that the server is not running
Question: do i need to specify the name of the new dataset like in the $connection_string var ?
NB: the dataset does not exist yet i want to create a new one from my BIM file, is that possible?
Hello,
I'm trying to deploy a bim file in my repo through TE to PowerBI, i've followed your doc and tested differents ways to setup the connection but i still have a problem deploying my BIM file as a new dataset to PowerBI, my action below
`name: DeployBIM on: workflow_dispatch: jobs: build: runs-on: windows-latest environment: MyEnvironment name: DeployBim steps:
name: Deploy to Power BI run: | $ErrorActionPreference = "Stop" $InformationPreference = "Continue" $root_path = (Get-Location).Path Write-Information "Working Directory: $root_path"
The error below says that the server is not running
Question: do i need to specify the name of the new dataset like in the $connection_string var ? NB: the dataset does not exist yet i want to create a new one from my BIM file, is that possible?
Thank's in advance for your help