Skip to content

Commit

Permalink
Merge pull request LoopKit#587 from ebouchut/fix_publish_deprecation_…
Browse files Browse the repository at this point in the history
…warnings_node_16_set_output

Fix `Node 16` and `set-output` deprecation warnings when running `publish.yml` Github Action
  • Loading branch information
ebouchut committed Feb 20, 2023
2 parents fcd6fd4 + 58fbc90 commit 5aaf302
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs build

- uses: JamesIves/github-pages-deploy-action@v4.2.5
- uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: site
branch: gh-pages
folder: site

0 comments on commit 5aaf302

Please sign in to comment.