Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pisolofin committed Aug 14, 2024
1 parent 90b92e6 commit 766a6f2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_playground.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Deploy Playground
on:
workflow_dispatch
# on:
# workflow_dispatch
jobs:
deploy:
runs-on: ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/deploy_website.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Deploy Website
on:
push:
branches: [ main ]
paths:
- 'Src/Website/**'

# on:
# push:
# branches: [ main ]
# paths:
# - 'Src/Website/**'

jobs:
deploy:
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/format_repositories.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Format Repositories
on:
push:
branches: [ main ]
paths:
- "Src/CSharpier/**/*"

jobs:
format_repositories:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: csharpier
- uses: actions/setup-dotnet@v3
- uses: actions/checkout@v2
with:
repository: belav/csharpier-repos
path: csharpier-repos
- run: dotnet build csharpier/Src/CSharpier.Cli/CSharpier.Cli.csproj -c release
- run: dotnet csharpier/Src/CSharpier.Cli/bin/release/net7.0/dotnet-csharpier.dll csharpier-repos --skip-write
# name: Format Repositories
# on:
# push:
# branches: [ main ]
# paths:
# - "Src/CSharpier/**/*"
#
# jobs:
# format_repositories:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# with:
# path: csharpier
# - uses: actions/setup-dotnet@v3
# - uses: actions/checkout@v2
# with:
# repository: belav/csharpier-repos
# path: csharpier-repos
# - run: dotnet build csharpier/Src/CSharpier.Cli/CSharpier.Cli.csproj -c release
# - run: dotnet csharpier/Src/CSharpier.Cli/bin/release/net7.0/dotnet-csharpier-config.dll csharpier-repos --skip-write
2 changes: 1 addition & 1 deletion .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Publish Nuget
on:
push:
branches: [ build-fix ]
branches: [ main ]
workflow_dispatch:
jobs:
test:
Expand Down

0 comments on commit 766a6f2

Please sign in to comment.