-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (44 loc) · 1.3 KB
/
publish-das.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Publish DAS
on:
push:
branches:
- feat/add-query-engine-doc
workflow_dispatch:
inputs:
version:
description: "Version"
required: true
jobs:
tag:
if: github.ref == 'refs/heads/master'
uses: singnet/das/.github/workflows/run-semver.yml@master
with:
version: ${{ github.event.inputs.version }}
version-strategy: bump-version-from-variable-value
job-image-namespace: trueagi
job-image-version-semver: semantic-versioning
main-branch: master
version-tag-regex-pattern: /^\d+\.\d+\.\d+$/
version-require-confirmation: "true"
title: New version of DAS
deliverable: Tagged branch (${{ github.ref_name }}) in the repository
secrets: inherit
publish-query-engine-doc:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
repository: singnet/das-query-engine
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ^3.8.5
- name: Install Poetry
run: pip install poetry
- name: Update Documentation
run: |
poetry lock --no-update
poetry export --with doc -f requirements.txt | pip install -r /dev/stdin
mkdocs gh-deploy --force