Skip to content

Bump org.junit.jupiter:junit-jupiter from 6.0.0 to 6.0.1 #22

Bump org.junit.jupiter:junit-jupiter from 6.0.0 to 6.0.1

Bump org.junit.jupiter:junit-jupiter from 6.0.0 to 6.0.1 #22

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Publish package to GitHub Packages
on: [push]
# release:
# types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Publish package
run: ./gradlew jarWithSources publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}