lasp/.gitea/workflows/workflow.yml
Workflow config file is invalid. Please check your config file: yaml: line 30: did not find expected key

36 lines
707 B
YAML

name: Building and testing LASP
on:
push:
tags:
- '*'
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
Release-Ubuntu:
runs-on: ubuntu-latest
container: ascee/ubuntu_build:latest
needs: Build-Test-Ubuntu
steps:
- name: Release
uses: actions/release-action@main
with:
files: |-
dist/**
api_key: '${{secrets.RELEASE_TOKEN}}'
if: gitea.ref == 'refs/heads/master'