Skip to content

Commit

Permalink
Added Bitbucket CI build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
redtide committed Aug 3, 2023
1 parent c997290 commit 7df7a09
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
image: python:3.10
pipelines:
default:
- parallel:
- step:
name: Install Poetry
script:
- python3 -m pip install --upgrade poetry
- step:
name: Install dependencies
script:
- poetry install
- step:
name: Download assets
script:
- poetry run python3 scripts/download.py
- step:
name: Build assets
script:
- poetry run python3 scripts/uglify-assets.py
- step:
name: Build and deploy
script:
- poetry run mkdocs gh-deploy --force

0 comments on commit 7df7a09

Please sign in to comment.