From 309a61a6a5e5879eb40103d281a73804da7373d7 Mon Sep 17 00:00:00 2001 From: avishek-sen-gupta Date: Thu, 21 Nov 2024 20:44:44 +0530 Subject: [PATCH] Adding Windows image build workflow --- .github/workflows/maven-publish-window.yml | 43 ++++++++++++++++++++++ .github/workflows/maven-publish.yml | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/maven-publish-window.yml diff --git a/.github/workflows/maven-publish-window.yml b/.github/workflows/maven-publish-window.yml new file mode 100644 index 00000000..f07b9d61 --- /dev/null +++ b/.github/workflows/maven-publish-window.yml @@ -0,0 +1,43 @@ +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + +name: Maven Package Windows + +on: + push + +jobs: + build: + + runs-on: windows-latest + permissions: + contents: write + packages: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4.2.1 + with: + java-version: '21' + distribution: 'temurin' + server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + settings-path: ${{ github.workspace }} # location for the settings.xml file + + - name: Checkout submodules + uses: actions/checkout@v4 + with: + submodules: true + - name: Build with Maven + run: mvn -B package --file pom.xml + - name: Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + smojol-cli/target/smojol-cli.jar + che-che4z-lsp-for-cobol-integration/server/dialect-idms/target/dialect-idms.jar + # - name: Publish to GitHub Packages Apache Maven + # run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml + # env: + # GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index cb60dddb..e1074454 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -1,7 +1,7 @@ # This workflow will build a package using Maven and then publish it to GitHub packages when a release is created # For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path -name: Maven Package +name: Maven Package Linux on: push