lasp/.gitea/workflows/master.yml
Workflow config file is invalid. Please check your config file: yaml: line 26: mapping values are not allowed in this context

33 lines
655 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
- name: Release
uses: actions/release-action@main
with:
files: |-
dist/**
api_key: '${{secrets.RELEASE_TOKEN}}'