Skip to content

Commit

Permalink
print() statements yeah
Browse files Browse the repository at this point in the history
  • Loading branch information
dokterbob committed Oct 22, 2024
1 parent 65f2bce commit a78e54b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,42 @@ jobs:
- uses: actions/checkout@v3
with:
ref: main
- name: Stat README.md
run: stat -x README.md
- name: Stat backend/README.md
run: stat -x backend/README.md
- name: Dump README.md
run: cat README.md
- name: Dump backend/README.md
run: cat backend/README.md
- uses: ./.github/actions/pnpm-node-install
name: Install Node, pnpm and dependencies.
with:
node-version: 22.7.0
pnpm-version: 9.7.0
pnpm-install-args: --no-frozen-lockfile
- name: Stat README.md
run: stat -x README.md
- name: Stat backend/README.md
run: stat -x backend/README.md
- name: Dump README.md
run: cat README.md
- name: Dump backend/README.md
run: cat backend/README.md
- uses: ./.github/actions/poetry-python-install
name: Install Python, poetry and Python dependencies
with:
python-version: 3.9
poetry-version: 1.8.3
poetry-working-directory: ${{ env.BACKEND_DIR }}
- name: Stat README.md
run: stat -x README.md
- name: Stat backend/README.md
run: stat -x backend/README.md
- name: Dump README.md
run: cat README.md
- name: Dump backend/README.md
run: cat backend/README.md
- name: Copy readme to backend
run: cp README.md backend/
- name: Build chainlit
Expand Down

0 comments on commit a78e54b

Please sign in to comment.