diff --git a/.github/actions/publish-action/entrypoint.sh b/.github/actions/publish-action/entrypoint.sh index e8963dc..7c948da 100755 --- a/.github/actions/publish-action/entrypoint.sh +++ b/.github/actions/publish-action/entrypoint.sh @@ -1,3 +1,4 @@ #!/bin/bash make clean deps lint package +chown -R root:root /github/workspace make publish "forge_token=${PUPPETFORGE_TOKEN}" \ No newline at end of file diff --git a/.github/actions/release-major-action/entrypoint.sh b/.github/actions/release-major-action/entrypoint.sh index 392ebea..2c5b6b0 100755 --- a/.github/actions/release-major-action/entrypoint.sh +++ b/.github/actions/release-major-action/entrypoint.sh @@ -1,4 +1,5 @@ #!/bin/bash git config --global user.email "opensource@shinesolutions.com" git config --global user.name "Shine Open Source" +chown -R root:root /github/workspace make release-major \ No newline at end of file diff --git a/.github/actions/release-minor-action/entrypoint.sh b/.github/actions/release-minor-action/entrypoint.sh index cea827d..68cd33f 100755 --- a/.github/actions/release-minor-action/entrypoint.sh +++ b/.github/actions/release-minor-action/entrypoint.sh @@ -1,4 +1,5 @@ #!/bin/bash git config --global user.email "opensource@shinesolutions.com" git config --global user.name "Shine Open Source" +chown -R root:root /github/workspace make release-minor \ No newline at end of file diff --git a/.github/actions/release-patch-action/entrypoint.sh b/.github/actions/release-patch-action/entrypoint.sh index d2f52ad..72f51b0 100755 --- a/.github/actions/release-patch-action/entrypoint.sh +++ b/.github/actions/release-patch-action/entrypoint.sh @@ -1,4 +1,5 @@ #!/bin/bash git config --global user.email "opensource@shinesolutions.com" git config --global user.name "Shine Open Source" +chown -R root:root /github/workspace make release-patch \ No newline at end of file