Update jetty-ee8-websocket-javax-server to 12.0.15 #1357
Workflow file for this run
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: CI | |
env: | |
JAVA_OPTS: "-Dfile.encoding=UTF-8 -Xms1024M -Xmx3072M -Xss4M" | |
on: | |
push: | |
branches: '**' | |
tags: [ "v[0-9]+*" ] | |
pull_request: | |
# avoid duplicate checks (push & PR) further in the review process | |
types: [opened] | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md | |
strategy: | |
fail-fast: false | |
matrix: | |
scala: [ 2.13.15 ] | |
command: [ udash-jvm/test, udash-js/test, guide-selenium/test ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: sbt | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
- name: Install npm dependencies | |
run: npm install | |
- name: Run tests | |
run: sbt ++${{ matrix.scala }} ${{ matrix.command }} | |
publish: | |
name: Publish to Sonatype | |
# only run on tag push | |
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v')) | |
needs: [ test ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: sbt | |
- name: Get version | |
id: get_tag_name | |
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
- name: Import GPG key | |
env: | |
#exported via `gpg -a --export-secret-keys <key> | cat -e | sed 's/\$/\\n/g' | xclip -selection clipboard` and added to org secrets | |
SONATYPE_GPG: ${{ secrets.SONATYPE_GPG }} | |
run: echo -e $SONATYPE_GPG | gpg --import - | |
- name: Publish artifacts | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: sbt 'set ThisBuild/version := "${{ steps.get_tag_name.outputs.VERSION }}"' +publishSigned | |
- name: Release Sonatype bundle | |
#https://github.com/xerial/sbt-sonatype#publishing-your-artifact | |
if: ${{ !endsWith(steps.get_tag_name.outputs.VERSION, 'SNAPSHOT') }} | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: sbt 'set ThisBuild/version := "${{ steps.get_tag_name.outputs.VERSION }}"' sonatypeBundleRelease |