Skip to content

Commit 73155e4

Browse files
committed
fix: Add step to copy actions to workspace as a workaround for a GitHub Actions runner limitation.
1 parent ec26d97 commit 73155e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ outputs:
6868
runs:
6969
using: "composite"
7070
steps:
71+
- name: Copy Actions to Workspace
72+
shell: bash
73+
# FIXME: workaround until will be merged: https://github.com/actions/runner/pull/1684
74+
run: |
75+
[ -d .github/actions ] || (mkdir -p .github/actions && cp -r $GITHUB_ACTION_PATH/.github/actions .github/actions/)
7176
- name: Bump Maven
7277
if: inputs.type == 'maven'
7378
id: bump_maven

0 commit comments

Comments
 (0)