Skip to content

Bump to 2.7.0

Bump to 2.7.0 #23

Workflow file for this run

name: Release
# Controls when the workflow will run
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Submodules
run: git submodule update --init
- name: Build
run: TERM=dumb ./gradlew shadowJar
- name: Upload
run: curl https://marketplace.pretix.eu/upload/ -u pretixscan-proxy:${{ secrets.PLUM_UPLOAD_TOKEN }} -F "version=$(git describe --tags --always --first-parent)" -F "file=@server/build/libs/server-$(git describe --tags --always --first-parent)-all.jar"