lasp/.gitea/workflows/master.yml
J.A. de Jong - ASCEE / Redu-Sone B.V. 78181ebca9
Some checks failed
Building and releasing LASP (master branch) / Build-Test-Release-Ubuntu (push) Failing after 2m4s
Split two files. No other way possible?
2023-10-11 17:03:55 +02:00

29 lines
582 B
YAML

name: Building and releasing LASP (master branch)
on:
push:
branches:
- master
jobs:
Build-Test-Release-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
- name: Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
dist/**
api_key: '${{secrets.RELEASE_TOKEN}}'