Skip to content

Commit

Permalink
Public release
Browse files Browse the repository at this point in the history
  • Loading branch information
0blu committed Nov 20, 2022
0 parents commit 849d763
Show file tree
Hide file tree
Showing 21 changed files with 1,803 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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
40 changes: 40 additions & 0 deletions .github/workflows/Build_Launcher.yml
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
Loading

0 comments on commit 849d763

Please sign in to comment.