fixed postman import for 2.1.0 (more lenient). fixes #204 #252
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: Nightly | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, '[NOBUILD]') == false | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.mvnJlinkCache | |
key: ${{ runner.os }}-mvnJlinkCache-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-mvnJlinkCache- | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: liberica | |
java-version: 21 | |
architecture: x64 | |
- name: maven-settings-xml-action | |
uses: whelk-io/maven-settings-xml-action@v4 | |
with: | |
servers: '[{ "id": "github", "privateKey": "${{ secrets.DEPLOYMENT_KEY }}", "username": "${{ github.actor }}", "password": "${{ secrets.GITHUB_TOKEN }}" }]' | |
- name: Maven stats | |
run: ./mvnw.cmd -version | |
- name: Package | |
run: ./mvnw.cmd -B package -DexcludedGroups=ui | |
- name: Deploy to nightly | |
run: ./mvnw.cmd --% -B de.jutzig:github-release-plugin:release@deploy-nightly -pl milkman-dist |