File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -84,19 +84,23 @@ jobs:
84
84
- name : Setup Docker Buildx
85
85
uses : docker/setup-buildx-action@v3
86
86
87
- - name : Write Posit Connect license to disk
88
- run : echo "$CONNECT_LICENSE" > ./integration/license.lic
89
- env :
90
- CONNECT_LICENSE : ${{ secrets.CONNECT_LICENSE }}
91
-
92
87
- name : Setup UV
93
88
uses : astral-sh/setup-uv@v3
94
89
95
90
- name : Install UV Python
96
91
run : uv python install
97
92
98
- - name : Run integration tests for version
99
- run : make -C ./integration ${{ matrix.CONNECT_VERSION }}
93
+ - name : Configure Connect license
94
+ working-directory : ./integration
95
+ run : |
96
+ cat << EOF > connect.lic
97
+ ${{ secrets.CONNECT_LICENSE }}
98
+ EOF
99
+ chmod 600 connect.lic
100
+
101
+ - name : Run integration tests
102
+ working-directory : ./integration
103
+ run : make ${{ matrix.CONNECT_VERSION }}
100
104
101
105
- name : Upload integration test report
102
106
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments