Skip to content

chore: bump aiohttp from 3.12.14 to 3.13.3 in /dial-docker-compose/ci… #246

chore: bump aiohttp from 3.12.14 to 3.13.3 in /dial-docker-compose/ci…

chore: bump aiohttp from 3.12.14 to 3.13.3 in /dial-docker-compose/ci… #246

Workflow file for this run

name: Release workflow
on:
push:
branches:
- main
jobs:
run-notebooks:
name: Cookbook notebooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
submodules: true
- uses: isbang/compose-action@248470ecc5ed40d8ed3d4480d8260d77179ef579 # v2.4.2
with:
cwd: "./dial-cookbook/ci"
up-flags: "--abort-on-container-exit --exit-code-from test --timeout 300"
run-quickstart-model:
name: Quickstart model
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: isbang/compose-action@248470ecc5ed40d8ed3d4480d8260d77179ef579 # v2.4.2
name: Run quickstart model example
with:
cwd: "./dial-docker-compose/ci/model"
up-flags: "--abort-on-container-exit --exit-code-from test --timeout 300"
run-quickstart-application:
name: Quickstart application
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: isbang/compose-action@248470ecc5ed40d8ed3d4480d8260d77179ef579 # v2.4.2
with:
cwd: "./dial-docker-compose/ci/application"
up-flags: "--abort-on-container-exit --exit-code-from test --timeout 300"
run-quickstart-addon:
name: Quickstart addon
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: isbang/compose-action@248470ecc5ed40d8ed3d4480d8260d77179ef579 # v2.4.2
with:
cwd: "./dial-docker-compose/ci/addon"
up-flags: "--abort-on-container-exit --exit-code-from test --timeout 300"
run-quickstart-self-hosted-model-ollama:
name: Quickstart self-hosted model (Ollama)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: isbang/compose-action@248470ecc5ed40d8ed3d4480d8260d77179ef579 # v2.4.2
with:
cwd: "./dial-docker-compose/ci/ollama"
up-flags: "--abort-on-container-exit --exit-code-from test --timeout 300"
build-and-deploy:
needs:
- run-notebooks
- run-quickstart-model
- run-quickstart-application
- run-quickstart-addon
- run-quickstart-self-hosted-model-ollama
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 22
cache: npm
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.11"
- name: Install npm dependencies
run: npm ci
- name: Install docusaurus
run: npm install --global docusaurus-init
- name: Install quarto
run: pip install "quarto-cli>=1.4,<2.0"
- name: Build website
run: npm run build
env:
BASE_URL: ${{ vars.BASE_URL }}
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.ACTIONS_BOT_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
user_name: ai-dial-actions
user_email: 149404362+ai-dial-actions@users.noreply.github.com