Skip to content

chore: release 1.0.0 #37

chore: release 1.0.0

chore: release 1.0.0 #37

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
# env:
# AAA: ${{ secrets.AAA }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Build Frontend 🏗️
run: |
cd web
yarn install
yarn build
- name: Build Backend 🏗️
run: |
pip install poetry
poetry install
poetry build
- name: Upload results 📤
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
if-no-files-found: error