Skip to content

Commit

Permalink
Fix GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianAllred committed Dec 12, 2023
1 parent e7fcd20 commit 2972483
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v5
with:
images: brianallred/tera-raid-helper

- name: Build and push Docker image
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
# uses GitHub's checkout action to checkout code form the master branch
- uses: actions/checkout@v4

# sets up .NET Core SDK 7
# sets up .NET Core SDK 8
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4.0.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

Expand All @@ -42,8 +42,9 @@ jobs:
- name: Add .nojekyll file
run: touch release/wwwroot/.nojekyll

# Publui
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: release/wwwroot

0 comments on commit 2972483

Please sign in to comment.