File tree Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Expand file tree Collapse file tree 1 file changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -17,20 +17,29 @@ jobs:
17
17
build :
18
18
# The type of runner that the job will run on
19
19
runs-on : windows-latest
20
-
20
+ env :
21
+ ProductClientId : ${{ secrets.PRODUCTCLIENTID }}
22
+ ProductClientSecret : ${{ secrets.PRODUCTCLIENTSECRET }}
21
23
# Steps represent a sequence of tasks that will be executed as part of the job
22
24
steps :
23
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24
26
- uses : actions/checkout@v4
27
+ - name : Set up Strawberry Perl
28
+ run : |
29
+ choco install strawberryperl -y
30
+ shell : powershell
25
31
26
- - name : Set up Perl
27
- uses : shogo82148/actions-setup-perl@v1
28
- with :
29
- perl-version : " 5.38"
30
- distribution : strawberry
31
-
32
- - name : Install CPAN modules
33
- run : cpanm --installdeps .
32
+ - name : Verify Perl installation
33
+ run : |
34
+ perl -v
35
+ cpan -v
36
+ shell : cmd
37
+
38
+ - name : Install Perl dependencies
39
+ run : |
40
+ cpan install JSON
41
+ cpan install LWP::UserAgent
42
+ shell : cmd
34
43
35
44
- name : Build SDK Package
36
45
run : |
You can’t perform that action at this time.
0 commit comments