Skip to content

Commit

Permalink
Setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertOstermann committed Aug 20, 2024
1 parent 693d319 commit 2d2aaed
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ insert_final_newline = true
[*.md]
trim_trailing_whitespace = false

[*.{js,jsx,ts,tsx,json,jsonc}]
[*.{js,jsx,ts,tsx,json,jsonc,yaml}]
indent_size = 2

[*.{cs}]
Expand Down
14 changes: 14 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Setup
description: Setup Dependencies
runs:
using: "composite"
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.10.0"
Original file line number Diff line number Diff line change
@@ -1,65 +1,60 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy ASP.Net Core app to Azure Web App - mfl-freeagency

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'

- name: Build with dotnet
run: dotnet build --configuration Release

- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/myapp

deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy ASP.Net Core app to Azure Web App - mfl-freeagency

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup

- name: Publish
run: dotnet publish --configuration Release --property OutputPath=${{ env.DOTNET_ROOT }}/mfl/

- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: mfl
path: ${{ env.DOTNET_ROOT }}/mfl/publish

deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: "production"
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: .net-app

steps:
- name: Download Build
uses: actions/download-artifact@v4
with:
name: mfl

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_447CCD33623F44DBAB3AEF0552926F05 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_104E1030154D42129619DD3C2F8BF6E4 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_0C8A43A3D309461BBD85E2BD2A11E888 }}

- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v3
with:
app-name: 'mfl-freeagency'
slot-name: 'Production'
package: .


- name: Deploy to Azure
id: deploy-to-webapp
uses: azure/webapps-deploy@v3
with:
app-name: "mfl-freeagency"
slot-name: "production"
package: .
4 changes: 2 additions & 2 deletions server/Hubs/FreeAgency/FreeAgencyHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public class FreeAgencyHub : Hub<IFreeAgencyClient>
{
private static bool _isServerInitialized;
private static readonly ConcurrentDictionary<string, Team> Connections = new();
private static readonly HashSet<string> OptOutIds = new();
private static HashSet<Team> Teams = null!;
private static readonly HashSet<string> OptOutIds = [];
private static HashSet<Team> Teams = [];
private static LinkedList<Player> Players = null!;
private static LinkedListNode<Player> _node = null!;
private static readonly Queue<Message> Messages = new();
Expand Down

0 comments on commit 2d2aaed

Please sign in to comment.