Skip to content

Commit ccfda71

Browse files
authored
fix: correctly copy action directory contents to workspace (#12)
2 parents 8b2a39f + 386b911 commit ccfda71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ runs:
7171
- name: Copy Actions to Workspace
7272
shell: bash
7373
# FIXME: workaround until will be merged: https://github.com/actions/runner/pull/1684
74+
# original ref: https://github.com/hoverkraft-tech/ci-github-common/issues/161
7475
run: |
75-
[ -d .github/actions ] || (mkdir -p .github/actions && cp -r $GITHUB_ACTION_PATH/.github/actions .github/actions/)
76+
[ -d .github/actions ] || (mkdir -p .github/actions && cp -r $GITHUB_ACTION_PATH/.github/actions/* .github/actions/)
7677
- name: Bump Maven
7778
if: inputs.type == 'maven'
7879
id: bump_maven

0 commit comments

Comments
 (0)