name: Build STI App
on: push: branches: - main
jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3
- name: Set up Python (if needed)
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Build app
run: |
echo "Building STI App"
mkdir output
cp -r * output/
echo "Build complete"
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: STI-Build
path: output/