Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install SVN in deploy container if not already there #839

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/deploy-on-release-to-dot-org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ jobs:
tools: composer:v2
coverage: none

# Some images won't have svn available. Install it if that's the case.
- name: Install SVN
run: |
if ! command -v svn &> /dev/null; then
echo "Installing SVN..."
sudo apt-get update || { echo "Failed to update package lists"; exit 1; }
sudo apt-get install -y subversion || { echo "Failed to install SVN"; exit 1; }
else
echo "SVN is already installed"
fi

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down
Loading