Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 in /desktop #194

Bump follow-redirects from 1.15.5 to 1.15.6 in /desktop

Bump follow-redirects from 1.15.5 to 1.15.6 in /desktop #194

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master, development ]
paths:
- "server/**"
pull_request:
branches: [ master, development ]
paths:
- "desktop/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
server-id: github
server-username: GITHUB_USER_REF
server-password: GITHUB_TOKEN_REF
- name: Build with Maven
run: mvn -B -Pgithub package --file pom.xml
env:
GITHUB_USER_REF: ${{secrets.GH_PACKAGE_REPO_USERNAME}}
GITHUB_TOKEN_REF: ${{secrets.GH_PACKAGE_REPO_PASSWORD}}