You've already forked ubuntu-act_gitea
12 lines
367 B
Bash
Executable File
12 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
################################
|
|
# Wrapper script for go-semantic-release
|
|
# This is to allow use of cached plugin versions in
|
|
# standard container for Gitea Actions runner.
|
|
################################
|
|
|
|
# Copy pre-loaded plugins
|
|
cp -Rf /tmp/.semrel "$(pwd)"/;
|
|
|
|
# Execute semantic-release and expand parameters
|
|
/usr/local/bin/go-semantic-release "$@" |