-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 849d763
Showing
21 changed files
with
1,803 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
name: Bug report | ||
about: Launcher bug report | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Wait a moment, | ||
are you sure you want to create an issue with this launcher? | ||
You probably want to create an issue at HermesProxy: https://github.com/WowLegacyCore/HermesProxy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Build Proxy | ||
|
||
on: ['push'] | ||
|
||
env: | ||
DOTNET_VERSION: '6.0.x' | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: ['windows'] | ||
runs-on: ${{ matrix.os }}-latest | ||
|
||
steps: | ||
- name: Checkout repository content | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Publish | ||
run: dotnet publish --configuration Release --use-current-runtime -p:UsePublishBuildSettings=true | ||
|
||
- name: Copy files | ||
run: cp -r ./EverlookClassic.Launcher/bin/Release/*/publish/ publish | ||
|
||
- name: Upload build artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: EverlookClassic-${{ matrix.os }}-${{ runner.arch }}-${{ github.sha }} | ||
path: publish | ||
if-no-files-found: error |
Oops, something went wrong.