Skip to content

Default colors adjustment #17

Default colors adjustment

Default colors adjustment #17

Workflow file for this run

name: Release Build
on:
push:
tags: [ '*' ]
jobs:
release:
runs-on: ubuntu-latest
container:
image: maccasoft/build-agent
steps:
- uses: actions/checkout@v3
- name: Maven build
run: |
Xvfb :1 -ac -screen 0 1280x1024x8 -nolisten tcp &
mvn --batch-mode package
- name: Upload
uses: softprops/action-gh-release@v1
with:
files: |
target/spin-tools-linux*
target/spin-tools-windows*
target/spin-tools-macos*
- name: Create Tests Summary
uses: test-summary/action@dist
with:
paths: modules/com.maccasoft.spin.tools/target/surefire-reports/**/*.xml
if: always()