File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ jobs:
14
14
Deployment :
15
15
name : Deployment
16
16
runs-on : ubuntu-latest
17
- environment :
18
- name : ${{ inputs.environment }}
19
-
17
+ environment : ${{ inputs.environment }}
20
18
steps :
19
+ - name : Show default environment variables
20
+ run : |
21
+ echo "The url is: ${{ secrets.DATAVERSEENVURL }}" # reference the default environment variables
22
+
21
23
- name : Setup .NET
22
24
uses : actions/setup-dotnet@v3
23
25
with :
39
41
tokenSuffix : ' }$'
40
42
files : ' ["**/*.json"]'
41
43
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 }}
45
47
- name : import configuration data
46
48
run : |
47
49
cd ${{ github.workspace }}/configurationmigrationtool
You can’t perform that action at this time.
0 commit comments