Skip to content

Commit

Permalink
test ci cd
Browse files Browse the repository at this point in the history
  • Loading branch information
TitleHHHH authored and TitleHHHH committed Nov 17, 2023
1 parent 41beaa7 commit 090e61d
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 116 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/Minecraft-Holy-Client.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: "Build"

on:
push:
branches:
- development
paths-ignore:
- '**/*.md'
- '**/*.gitignore'
- '**/*.gitattributes'
pull_request:
branches:
- development
paths-ignore:
- '**/*.md'
- '**/*.gitignore'
- '**/*.gitattributes'
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false
DOTNET_MULTILEVEL_LOOKUP: 0
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true
TERM: xterm

steps:
- uses: actions/checkout@v3

- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.100

- name: Restore
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

116 changes: 0 additions & 116 deletions .github/workflows/snapshot.yml

This file was deleted.

0 comments on commit 090e61d

Please sign in to comment.