Skip to content

Commit de21ef0

Browse files
committed
Redesign of command handling
1 parent 10de9c8 commit de21ef0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/cd-pipeline.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
Deployment:
1515
name: Deployment
1616
runs-on: ubuntu-latest
17-
environment:
18-
name: ${{ inputs.environment }}
19-
17+
environment: ${{ inputs.environment }}
2018
steps:
19+
- name: Show default environment variables
20+
run: |
21+
echo "The url is: ${{ secrets.DATAVERSEENVURL }}" # reference the default environment variables
22+
2123
- name: Setup .NET
2224
uses: actions/setup-dotnet@v3
2325
with:
@@ -39,9 +41,9 @@ jobs:
3941
tokenSuffix: '}$'
4042
files: '["**/*.json"]'
4143
env:
42-
DataverseClientId: ${{ secrets.DATAVERSECLIENTID }}
43-
DataverseClientSecret: ${{ secrets.DATAVERSECLIENTSECRET }}
44-
DataverseEnvUrl: ${{ secrets.DATAVERSEENVURL }}
44+
DATAVERSECLIENTID: ${{ secrets.DATAVERSECLIENTID }}
45+
DATAVERSECLIENTSECRET: ${{ secrets.DATAVERSECLIENTSECRET }}
46+
DATAVERSEENVURL: ${{ secrets.DATAVERSEENVURL }}
4547
- name: import configuration data
4648
run: |
4749
cd ${{ github.workspace }}/configurationmigrationtool

0 commit comments

Comments
 (0)