Skip to content

Commit

Permalink
Fix issue with github context import
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed May 26, 2022
1 parent 38c31b7 commit 1b3e559
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
27 changes: 25 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kamranahmedse/github-pages-blog-action",
"version": "0.0.2",
"version": "0.0.3",
"description": "Create good looking blog from your markdown files in a GitHub repository\n\n",
"main": "lib/main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getInput } from '@actions/core';
import { run } from './runner';
import path from 'path';
import github from '@actions/github';
import * as github from '@actions/github';

const { pusher, repository } = github.context.payload;

Expand Down

0 comments on commit 1b3e559

Please sign in to comment.