Skip to content

Commit

Permalink
chore: fix action (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic authored Aug 17, 2024
1 parent 7c6a60d commit 435a859
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/sync-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
sync-extensions:
runs-on: ubuntu-latest
runs-on: windows-latest
steps:

- name: Check out code
Expand All @@ -19,8 +19,9 @@ jobs:
with:
global-json-file: global.json

- name: Clean Extension
run: rm -rf ./src/KubeUI/ControlExtensions.Generated/*
- name: Clean Extensions
shell: pwsh
run: Remove-Item "src/KubeUI/ControlExtensions.Generated/*" -Force -Recurse

- name: Install Tool
run: dotnet tool install --global AvaloniaExtensionGenerator --prerelease
Expand All @@ -34,6 +35,6 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: sync-extensions
commit-message: "feat: Update Extension"
title: "feat: Update Extension"
commit-message: "chore: Update Extensions"
title: "chore: Update Extensions"
body: "Automated Extension Sync"

0 comments on commit 435a859

Please sign in to comment.