From c8115159415f72c0e8df222f442f0c09a52387ed Mon Sep 17 00:00:00 2001 From: Bertil Chapuis Date: Tue, 14 Jan 2025 21:55:50 +0100 Subject: [PATCH] Fix the release workflow --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 55520fec1..4d69de544 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,7 @@ on: tags: - 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+' +jobs: publish-candidate: name: Publish candidate runs-on: ubuntu-latest @@ -65,6 +66,8 @@ on: - name: Publish release candidate on Apache SVN run: | + sudo apt-get update + sudo apt-get install -y subversion mkdir -p ${{ steps.variables.outputs.git_version }} cp ./baremaps-cli/target/apache-baremaps-${{ steps.variables.outputs.git_version }}-* ${{ steps.variables.outputs.git_version }} svn --username "${{ secrets.INCUBATOR_SVN_DEV_USERNAME }}" --password "${{ secrets.INCUBATOR_SVN_DEV_PASSWORD }}" import -m "Apache Baremaps ${{ steps.variables.outputs.git_version }} (incubating)" ${{ steps.variables.outputs.git_version }} https://dist.apache.org/repos/dist/dev/incubator/baremaps/${{ steps.variables.outputs.git_version }}