diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-22 16:43:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 16:43:33 +0200 |
| commit | 2b85a592f1ae87352d34c55aa8e1a5229341a435 (patch) | |
| tree | 580561911debcf2b1595a2d754d30ebec26d953a /.github/workflows/ci.yml | |
| parent | 30ca82591aa7a44904853d03bcc1e1f8de982800 (diff) | |
Fix CI, typos and others
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6b173f..4823a08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,6 @@ name: Deploy to GH Pages on: push: branches: - - master - main permissions: @@ -13,17 +12,17 @@ permissions: concurrency: group: "pages" - cancel-in-progress: false + cancel-in-progress: true jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5.2.0 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: python-version: 3.12 - - uses: actions/cache@v4.1.1 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -34,7 +33,7 @@ jobs: - name: Build the site run: mkdocs build - name: Upload static to GH Pages - uses: actions/upload-pages-artifact@v3.0.1 + uses: actions/upload-pages-artifact@v4 with: path: site/ |
