Skip to content

fix(deps): update bolt to v1.1.25 #603

fix(deps): update bolt to v1.1.25

fix(deps): update bolt to v1.1.25 #603

Workflow file for this run

name: Gradle Deployment
on:
push:
branches:
- "main"
tags:
- "**"
concurrency:
group: box-deployment
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up JDK 21
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0
- run: chmod +x ./gradlew
- name: Publish artifacts
run: ./gradlew publish -P box.release=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Generate Javadocs
run: ./gradlew aggregateJavadoc -P box.release=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Create top and not-found pages
run: |
cp -f assets/gh-pages.html staging/index.html
cp -f assets/gh-pages.html staging/404.html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./staging
keep_files: true
allow_empty_commit: true