diff --git a/.github/workflows/develop-build.yml b/.github/workflows/develop-build.yml index 566cbba2e..33887fcdd 100644 --- a/.github/workflows/develop-build.yml +++ b/.github/workflows/develop-build.yml @@ -28,6 +28,8 @@ jobs: ${{ runner.os }}-maven- - name: Build with Maven run: mvn clean verify -U -P snapshot-build + - name: Rename WAR + run: mv target/*.war target/goobi.war - name: Get current date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S %Z')" diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index afc612cf9..4fd65c746 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -28,6 +28,8 @@ jobs: ${{ runner.os }}-maven- - name: Build with Maven run: mvn clean verify -U -P release-build + - name: Rename WAR + run: mv target/*.war target/goobi.war - name: Release id: create_release uses: softprops/action-gh-release@v2