Skip to content

Commit

Permalink
version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ElayGelbart committed Dec 28, 2021
1 parent 0437f79 commit 06a7de8
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 19 deletions.
83 changes: 67 additions & 16 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 src/docker/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from "@actions/core";
import * as core from "@actions/core";
import { execSync } from "child_process";

const dockerDeploymentFn = (AppName: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/git/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from "@actions/core";
import * as core from "@actions/core";
import { execSync } from "child_process";
import { checkShallow, gitStack } from "./utils";
const gitDeploymentFn = (AppName: string, HerokuApiKey: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from "@actions/core";
import * as core from "@actions/core";
import dockerDeployment from "./docker/main";
import gitDeployment from "./git/main";

Expand Down

0 comments on commit 06a7de8

Please sign in to comment.