-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build a documentation site with mkdocs to allow testing more reusable…
… workflows (#28) * docs: Add all necessary files for building the documentation with mkdocs * docs: Update ignore settings * docs: Add numbered lists to main Readme to enable easier visibility into the total number of actions/workflows in the repo * docs: Added documentation around the GitHub Actions Environments used by the various reusable workflows * ci: Test on windows to try to catch failures * ci: Convert all references to tags in Workflows to commit SHAs * docs: Update changelog
- Loading branch information
Showing
48 changed files
with
1,316 additions
and
121 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
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
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
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
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
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 |
---|---|---|
|
@@ -28,15 +28,15 @@ jobs: | |
id-token: write | ||
attestations: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
fetch-depth: 0 | ||
- uses: tektronix/python-package-ci-cd/actions/[email protected] | ||
id: create-version | ||
with: | ||
package-name: ${{ inputs.package-name }} | ||
- name: Build package | ||
uses: hynek/build-and-inspect-python-package@v2.8.0 | ||
uses: hynek/build-and-inspect-python-package@2dbbf2b252d3a3c7cec7a810e3ed5983bd17b13a | ||
with: | ||
attest-build-provenance-github: 'true' | ||
outputs: | ||
|
@@ -51,12 +51,12 @@ jobs: | |
id-token: write | ||
steps: | ||
- name: Download built packages | ||
uses: actions/download-artifact@v4 | ||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 | ||
with: | ||
name: Packages | ||
path: dist | ||
- name: Upload package to Test PyPI | ||
uses: pypa/gh-action-pypi-publish@v1.9.0 | ||
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 | ||
with: | ||
password: ${{ secrets.test-pypi-api-token }} | ||
repository-url: https://test.pypi.org/legacy/ | ||
|
@@ -68,14 +68,14 @@ jobs: | |
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f | ||
with: | ||
python-version-file: pyproject.toml | ||
- name: Test installing from test.pypi.org | ||
# A retry is used to allow for some downtime before the package is installable | ||
uses: nick-fields/retry@v3 | ||
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e | ||
with: | ||
timeout_minutes: 10 | ||
max_attempts: 5 | ||
|
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
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
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.