Skip to content

Commit fc21503

Browse files
committed
ISSUE-CELLSCLOUD-13424: Development of cells cloud sdk 25.9.
1 parent 6bd9881 commit fc21503

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/sdkbuild2run.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- name: Run examples
4141
run: |
4242
cd examples
43-
ruby ./Example_QuickStart.rb
43+
ruby -I ../lib ./Example_QuickStart.rb
44+
ruby -I ../lib ./Example_UploadFile.rb
4445
4546

examples/Example_QuickStart.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
require 'aspose_cells_cloud'
44

55
@instance = AsposeCellsCloud::CellsApi.new(ENV['CellsCloudClientId'], ENV['CellsCloudClientSecret']);
6-
request = AsposeCellsCloud::ConvertSpreadsheetRequest.new(:Spreadsheet=>'EmployeeSalesSummary.xlsx',:format=>format);
6+
request = AsposeCellsCloud::ConvertSpreadsheetRequest.new(:Spreadsheet=>'EmployeeSalesSummary.xlsx',:format=>'pdf');
77
response = @instance.convert_spreadsheet(request);
8-
FileUtils.cp(response.path, 'EmployeeSalesSummary.csv')
8+
FileUtils.cp(response.path, 'EmployeeSalesSummary.pdf')

0 commit comments

Comments
 (0)