We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9db722 commit 52a5c46Copy full SHA for 52a5c46
1 file changed
.github/workflows/deploy.yml
@@ -1,16 +1,20 @@
1
-on: push
+on:
2
+ push:
3
+ workflow_dispatch:
4
name: 🚀 Deploy website on push
5
jobs:
6
web-deploy:
7
name: 🎉 Deploy
8
runs-on: ubuntu-latest
9
steps:
10
- name: 🚚 Get latest code
- uses: actions/checkout@v3
11
+ uses: actions/checkout@v4
12
- name: Setup .NET Core
- uses: actions/setup-dotnet@v3.2.0
13
+ uses: actions/setup-dotnet@v4
14
with:
- dotnet-version: 8.0.x
15
+ dotnet-version: |
16
+ 8.0.x
17
+ 9.0.x
18
- name: Install dependencies
19
run: dotnet restore
20
- name: Build with dotnet
0 commit comments