Skip to content

Commit

Permalink
prepare for run through act
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 18, 2025
1 parent d93481b commit d506131
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions actions/book/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ runs:
run: touch .book/.nojekyll

- name: GitHub Pages action
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
Expand Down
1 change: 1 addition & 0 deletions actions/uv/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ runs:
uv build
- name: Upload build artifacts
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v4
with:
name: dist
Expand Down
1 change: 1 addition & 0 deletions actions/uv/coverage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ runs:
rm -f artifacts/tests/html-coverage/.gitignore
- name: Upload test results
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v4
with:
name: tests
Expand Down
1 change: 1 addition & 0 deletions actions/uv/jupyter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ runs:
# Upload the book
- name: Archive book
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v4
with:
name: book
Expand Down
1 change: 1 addition & 0 deletions actions/uv/marimo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ runs:
fi
- name: Upload HTML artifacts
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v4
with:
name: marimo
Expand Down
4 changes: 4 additions & 0 deletions actions/uv/pdoc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ inputs:
required: false
default: '3.12'


runs:


using: "composite"
steps:
# This is not using any github-token:
Expand Down Expand Up @@ -74,6 +77,7 @@ runs:
uv run pdoc -o artifacts/pdoc ${{ inputs.pdoc-arguments }} ${{ inputs.source-folder }}
- name: Upload documentation
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v4
with:
name: pdoc
Expand Down
1 change: 1 addition & 0 deletions actions/uv/sphinx/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ runs:
uv run sphinx-build -b html ${{ inputs.sphinx-folder }} artifacts/sphinx
- name: Upload documentation
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: actions/upload-artifact@v3
with:
name: sphinx
Expand Down

0 comments on commit d506131

Please sign in to comment.