Skip to content

Commit

Permalink
Using && instead of and
Browse files Browse the repository at this point in the history
  • Loading branch information
svaningelgem committed Oct 2, 2023
1 parent 189a15a commit 4e1c999
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: touch .nojekyll

- name: Deploy docs
if: ${{ github.ref_type == 'tag' and github.repository == 'pola-rs/polars' }}
if: ${{ github.ref_type == 'tag' && github.repository == 'pola-rs/polars' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: site
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: make html

- name: Deploy Python docs for latest development version
if: ${{ github.ref_name == 'main' and github.repository == 'pola-rs/polars' }}
if: ${{ github.ref_name == 'main' && github.repository == 'pola-rs/polars' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: py-polars/docs/build/html
Expand All @@ -63,15 +63,15 @@ jobs:
echo "version=$version" >> "$GITHUB_OUTPUT"
- name: Deploy Python docs for latest release version - versioned
if: ${{ github.ref_type == 'tag' and github.repository == 'pola-rs/polars' }}
if: ${{ github.ref_type == 'tag' && github.repository == 'pola-rs/polars' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: py-polars/docs/build/html
target-folder: docs/python/version/${{ steps.version.outputs.version }}
single-commit: true

- name: Deploy Python docs for latest release version - stable
if: ${{ github.ref_type == 'tag' and github.repository == 'pola-rs/polars' }}
if: ${{ github.ref_type == 'tag' && github.repository == 'pola-rs/polars' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: py-polars/docs/build/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
touch target/doc/.nojekyll
- name: Deploy Rust docs
if: ${{ github.ref_name == 'main' and github.repository == 'pola-rs/polars' }}
if: ${{ github.ref_name == 'main' && github.repository == 'pola-rs/polars' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: target/doc
Expand Down

0 comments on commit 4e1c999

Please sign in to comment.