Skip to content

Commit

Permalink
Showing 19 changed files with 33 additions and 12 deletions.
2 changes: 1 addition & 1 deletion analyze/action.yml
@@ -74,4 +74,4 @@ outputs:
runs:
using: "node16"
main: "../lib/analyze-action.js"
post: "../lib/analyze-action-cleanup.js"
post: "../lib/analyze-action-post.js"
2 changes: 1 addition & 1 deletion init/action.yml
@@ -78,4 +78,4 @@ outputs:
runs:
using: 'node16'
main: '../lib/init-action.js'
post: '../lib/init-action-cleanup.js'
post: '../lib/init-action-post.js'
1 change: 0 additions & 1 deletion lib/analyze-action-cleanup.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions lib/analyze-action-cleanup.test.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/analyze-action-cleanup.test.js.map

This file was deleted.

7 changes: 6 additions & 1 deletion lib/analyze-action-cleanup.js → lib/analyze-action-post.js

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

1 change: 1 addition & 0 deletions lib/analyze-action-post.js.map

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

3 changes: 3 additions & 0 deletions lib/analyze-action-post.test.js

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

1 change: 1 addition & 0 deletions lib/analyze-action-post.test.js.map

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

1 change: 0 additions & 1 deletion lib/init-action-cleanup.js.map

This file was deleted.

1 change: 0 additions & 1 deletion lib/init-action-cleanup.test.js.map

This file was deleted.

7 changes: 6 additions & 1 deletion lib/init-action-cleanup.js → lib/init-action-post.js

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

1 change: 1 addition & 0 deletions lib/init-action-post.js.map

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

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

1 change: 1 addition & 0 deletions lib/init-action-post.test.js.map

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

File renamed without changes.
5 changes: 5 additions & 0 deletions src/analyze-action-cleanup.ts → src/analyze-action-post.ts
@@ -1,3 +1,8 @@
/**
* This file is the entry point for the `post:` hook of `analyze-action.yml`.
* It will run after the all steps in this job, in reverse order in relation to
* other `post:` hooks.
*/
import * as core from "@actions/core";

import * as actionsUtil from "./actions-util";
File renamed without changes.
6 changes: 6 additions & 0 deletions src/init-action-cleanup.ts → src/init-action-post.ts
@@ -1,3 +1,9 @@
/**
* This file is the entry point for the `post:` hook of `init-action.yml`.
* It will run after the all steps in this job, in reverse order in relation to
* other `post:` hooks.
*/

import * as core from "@actions/core";

import * as actionsUtil from "./actions-util";

0 comments on commit 44a27e6

Please sign in to comment.