Skip to content

Commit 3825343

Browse files
committed
retry gh-pages
1 parent 096d634 commit 3825343

File tree

4 files changed

+8
-20
lines changed

4 files changed

+8
-20
lines changed

.github/pages/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>Redirecting to master branch</title>
55
<meta charset="utf-8">
6-
<meta http-equiv="refresh" content="0; url=./master/index.html">
7-
<link rel="canonical" href="master/index.html">
6+
<meta http-equiv="refresh" content="0; url=./main/index.html">
7+
<link rel="canonical" href="main/index.html">
88
</head>
99
</html>

.github/workflows/code_test.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python: ["3.7", "3.8", "3.9"]
14+
python: ["3.9"]
1515

1616
steps:
1717
- name: Checkout Source
@@ -40,17 +40,4 @@ jobs:
4040
- name: Run Tests
4141
run: pipenv run tests
4242

43-
- name: Publish Sdist and Wheel to PyPI
44-
# Only once when on a tag
45-
if: matrix.python == '3.7' && startsWith(github.ref, 'refs/tags')
46-
env:
47-
TWINE_USERNAME: __token__
48-
TWINE_PASSWORD: ${{ secrets.pypi_token }}
49-
run: twine upload dist/*
50-
51-
- name: Upload coverage to Codecov
52-
uses: codecov/codecov-action@v1
53-
with:
54-
name: ${{ matrix.python }}
55-
files: cov.xml
5643

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ these might also be used independently of kubernetes.
1414

1515
============== ==============================================================
1616
Docs Source https://github.com/epics-containers/k8s-epics-docs
17-
Documentation https://epics-containers.github.io
17+
Documentation https://epics-containers.github.io/k8s-epics-docs/
1818
============== ==============================================================
1919

2020
An important principal of the approach presented here is that an IOC container
@@ -28,7 +28,7 @@ configuration need only be a single IOC boot script.
2828
This approach reduces the number of images required and saves disk. It also
2929
makes for simple configuration management.
3030

31-
.. |docs_ci| image:: https://github.com/epics-containers/k8s-epics-docs/workflows/Docs%20CI/badge.svg?branch=master
31+
.. |docs_ci| image:: https://github.com/epics-containers/k8s-epics-docs/workflows/Docs%20CI/badge.svg?branch=main
3232
:target: https://github.com/epics-containers/k8s-epics-docs/actions?query=workflow%3A%22Docs+CI%22
3333
:alt: Docs CI
3434

docs/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
import os
1313
import sys
1414

15+
import k8s_epics_docs # noqa
16+
1517
sys.path.insert(0, os.path.abspath(os.path.join(__file__, "..", "..")))
1618

17-
import k8s_epics_docs # noqa
1819

1920
# -- General configuration ------------------------------------------------
2021

@@ -136,7 +137,7 @@
136137
# sphinx-multiversion config
137138
smv_rebuild_tags = False
138139
smv_tag_whitelist = r"^\d+\.\d+.*$" # only document tags with form 0.9*
139-
smv_branch_whitelist = r"^master$" # only branch to document is master
140+
smv_branch_whitelist = r"^main$" # only branch to document is main
140141
smv_outputdir_format = "{ref.name}"
141142
smv_prefer_remote_refs = False
142143
smv_remote_whitelist = "origin|github"

0 commit comments

Comments
 (0)