Skip to content

Commit

Permalink
Update github actions to fix release build
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Nov 20, 2024
1 parent c5b04fb commit c50d868
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci-build-next-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
java-17-compatibility:
runs-on: ubuntu-latest
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -31,9 +33,3 @@ jobs:
- name: Run tests and build with Maven
run: |
mvn --batch-mode --update-snapshots clean package -DtrimStackTrace=false -Djava.version=17
- name: Publish Test Report
uses: scacap/action-surefire-report@v1
if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_if_no_tests: false
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

- name: Upload executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: extension-manager binary
path: extension-manager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Prepare checksum
run: find ./*/target -maxdepth 1 -name "*.jar" -exec sha256sum "{}" + > original_checksum
- name: Upload checksum to the artifactory
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: original_checksum
retention-days: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/render-design.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pandoc ../doc/design.md -o design.html --filter pandoc-plantuml
pandoc ../doc/system_requirements.md -o system_requirements.html --filter pandoc-plantuml
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.0
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: gh-pages
Expand Down

0 comments on commit c50d868

Please sign in to comment.