27 lines
640 B
YAML
27 lines
640 B
YAML
name: Publish to Github Packages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml -pl '!brouter-routing-app'
|
|
- name: Deploy to Github Package Registry
|
|
env:
|
|
GITHUB_USERNAME: x-access-token
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
run:
|
|
mvn --settings settings.xml deploy -pl '!brouter-routing-app'
|