Bump com.squareup.okio:okio from 3.5.0 to 3.6.0 #189
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
event-file: | |
# https://github.com/marketplace/actions/publish-test-results#support-fork-repositories-and-dependabot-branches | |
name: "Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: event-file | |
path: ${{ github.event_path }} | |
publish: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# - windows-latest | |
# - macos-latest | |
java: | |
- 8 | |
# - 17 | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
# - name: Install Docker on macOS | |
# uses: douglascamata/setup-docker-macos-action@v1-alpha | |
# - name: Login to Docker Hub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: build publish | |
run: ./gradlew clean build publishToGitHubPackages --info --stacktrace | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_SIGNING_KEY }} | |
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.GPG_SIGNING_PASSWORD }} | |
- name: Upload Test Results | |
# see publish-test-results.yml for workflow that publishes test results without security issues for forks | |
# https://github.com/marketplace/actions/publish-test-results#support-fork-repositories-and-dependabot-branches | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test Results (Java ${{ matrix.java }} on ${{ matrix.os }}) | |
path: '**/build/test-results/test/TEST-*.xml' | |
... |