Skip to content

Commit

Permalink
Update GitHub publishing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mlopatkin committed Dec 19, 2024
1 parent 09085a0 commit bd60673
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-gradle-outputs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Publish Gradle reports as workflow artifacts
runs:
using: composite
steps:
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Build results
path: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish-wiki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- master
paths:
- 'docs/site/**'
- '.github/workflow/publish-wiki.yaml'


# Allows you to run this workflow manually from the Actions tab
Expand Down Expand Up @@ -48,7 +49,7 @@ jobs:
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
Expand All @@ -60,7 +61,7 @@ jobs:
--gc \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/site/public

Expand All @@ -74,4 +75,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

0 comments on commit bd60673

Please sign in to comment.