Skip to content

Commit 3b795dc

Browse files
committed
updated yml, polishing
1 parent c8c717f commit 3b795dc

4 files changed

Lines changed: 1 addition & 12 deletions

File tree

.github/workflows/main.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,3 @@ jobs:
1616
env:
1717
GSHEET_CLIENT_EMAIL: ${{ secrets.GSHEET_CLIENT_EMAIL }}
1818
GSHEET_PRIVATE_KEY: ${{ secrets.GSHEET_PRIVATE_KEY }}
19-
- name: dump results
20-
env:
21-
# the output of the action can be found in ${{ steps.update_worksheet.outputs.results }}
22-
RESULTS: ${{ steps.update_worksheet.outputs.results }}
23-
run: echo "$RESULTS" | jq

dist/index.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as core from '@actions/core'
22
import GoogleSheet from 'google-sheet-cli/lib/lib/google-sheet'
33
import {GoogleSheetCli} from 'google-sheet-cli/lib/lib/google-sheet'
4-
import { runInThisContext } from 'vm';
54

65
async function run(): Promise<void> {
76
const spreadsheetId: string = core.getInput('spreadsheetId', {
@@ -38,9 +37,6 @@ async function run(): Promise<void> {
3837
var students = await gsheet.getData({minCol: 1, minRow: 1, maxCol: 1, maxRow: 100});
3938
var weeks = await gsheet.getData({minCol: 1, minRow: 1, maxCol: 100, maxRow: 1});
4039

41-
console.log(students)
42-
console.log(weeks)
43-
4440
var studentIndex = 1;
4541
var weekIndex = 1;
4642

0 commit comments

Comments
 (0)