Skip to content

Commit 84134fb

Browse files
committed
version bump + try to salvage deploy action
1 parent 9e7786c commit 84134fb

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
name: Deploy to GitHub Pages
22
on:
33
push:
4-
branches: [ "main", "master" ]
4+
branches: ["main", "master"]
55
workflow_dispatch:
6+
permissions:
7+
contents: write
68
jobs:
79
deploy:
810
runs-on: ubuntu-latest
9-
steps: [uses: fastai/workflows/quarto-ghp@master]
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
- run: pip install ".[dev]" nbdev
17+
- run: nbdev-install-quarto
18+
- run: nbdev-docs
19+
- uses: peaceiris/actions-gh-pages@v4
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./_docs
1023

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
# Project metadata
66
[project]
77
name = "glycowork"
8-
version = "1.8.0"
8+
version = "1.8.1"
99
description = "Package for processing and analyzing glycans"
1010
readme = "README.md"
1111
authors = [

0 commit comments

Comments
 (0)