1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 11:28:23 +02:00

Upgraded action versions in publishing guide

This commit is contained in:
squidfunk 2022-11-25 11:23:18 +01:00
parent 32a37dd1d0
commit 4959081bcf

View File

@ -28,12 +28,14 @@ contents:
branches: branches:
- master # (2)! - master # (2)!
- main - main
permissions:
contents: write
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-python@v2 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- run: pip install mkdocs-material # (3)! - run: pip install mkdocs-material # (3)!
@ -64,13 +66,15 @@ contents:
branches: branches:
- master - master
- main - main
permissions:
contents: write
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.repository.fork == false if: github.event.repository.fork == false
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-python@v2 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git