generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19973b5
commit 41f397a
Showing
33 changed files
with
1,351 additions
and
987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[bumpversion] | ||
current_version = 0.1.0 | ||
commit = True | ||
tag = False | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))? | ||
serialize = | ||
{major}.{minor}.{patch}-{pre_release} | ||
{major}.{minor}.{patch} | ||
|
||
[bumpversion:file:dagger/__init__.py] | ||
|
||
[bumpversion:file:docs/index.md] | ||
search = Dagger - {current_version} | ||
replace = Dagger - {new_version} | ||
|
||
[bumpversion:file:setup.cfg] | ||
search = version = {current_version} | ||
replace = version = {new_version} | ||
|
||
[bumpversion:part:pre_release] | ||
optional_value = final | ||
values = | ||
final | ||
dev | ||
alpha | ||
beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,31 +138,31 @@ jobs: | |
# - name: Validate docs | ||
# run: ./docker/validate_docs.sh | ||
# | ||
# build-docs: | ||
# runs-on: ubuntu-latest | ||
# if: github.event_name == 'pull_request' | ||
# steps: | ||
# - name: Check out code | ||
# uses: actions/checkout@v3 | ||
# | ||
# - uses: actions/[email protected] | ||
# with: | ||
# python-version: ${{ env.PYTHON_VERSION }} | ||
# | ||
# - name: Install dependencies | ||
# uses: ./.github/actions/install-dependencies | ||
# with: | ||
# requirements: "true" | ||
# docs-requirements: "true" | ||
# | ||
# - name: Build Docs | ||
# run: mkdocs build --strict | ||
# | ||
# - name: Upload coverage results artifact | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: docs-site | ||
# path: site/ | ||
build-docs: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'pull_request' | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Install dependencies | ||
uses: ./.github/actions/install-dependencies | ||
with: | ||
requirements: "true" | ||
docs-requirements: "true" | ||
|
||
- name: Build Docs | ||
run: mkdocs build --strict | ||
|
||
- name: Upload coverage results artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: docs-site | ||
path: site/ | ||
# | ||
# update-dev-docs: | ||
# runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.