Skip to content

pt2matsim 20.11

pt2matsim 20.11 #32

Workflow file for this run

# https://blog.frankel.ch/github-actions-maven-releases/
# https://github.com/actions/setup-java
name: Maven Deploy
on:
release:
type: [ created ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: bintray-polettif-matsim
server-username: BINTRAY_USERNAME
server-password: BINTRAY_PASSWORD
- name: Deploy with Maven
run: mvn -B deploy
env:
BINTRAY_USERNAME: ${{ secrets.BINTRAY_USERNAME }}
BINTRAY_PASSWORD: ${{ secrets.BINTRAY_PASSWORD }}