lasp/.gitea/workflows/master.yml
J.A. de Jong - ASCEE / Redu-Sone B.V. bab69c8018
Some checks failed
Building and releasing LASP (master branch) / Build-Test-Ubuntu (push) Failing after 2m28s
Building and releasing LASP (master branch) / Release-Ubuntu (push) Failing after -1m15s
Sigh............... Does this work?
2023-10-11 17:18:09 +02:00

34 lines
666 B
YAML

name: Building and releasing LASP (master branch)
on:
push:
branches:
- master
jobs:
Build-Test-Ubuntu:
runs-on: ubuntu-latest
container: ascee/ubuntu_build:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: |
pip install build
python3 -m build
pip install dist/lasp*.whl
pytest
Release-Ubuntu:
runs-on: ubuntu-latest
steps:
- name: Release
uses: actions/release-action@main
with:
files: |-
dist/**
api_key: '${{secrets.RELEASE_TOKEN}}'