Skip to content

Commit

Permalink
Daniel/engine desktop build (#13)
Browse files Browse the repository at this point in the history
* changes to work with the desktop build of the engine
* Added workflow and added option to push to duo
* added release job
  • Loading branch information
Unreal-Dan authored Jan 17, 2024
1 parent c5ad74b commit ba4c172
Show file tree
Hide file tree
Showing 6 changed files with 464 additions and 353 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/editor_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Editor Build and Release

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-editor:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
ref: 'daniel/engine_desktop_build'
- name: Checkout Vortex Engine
uses: actions/checkout@v3
with:
repository: 'StoneOrbits/VortexEngine'
path: 'VortexEditor/VortexEngine'
ref: 'desktop'
- name: Set up MSBuild path
uses: microsoft/setup-msbuild@v1
- name: Build
run: msbuild VortexEditor.sln /p:Configuration=Release /p:Platform=x64
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Binaries
path: x64/Release/VortexEditor.exe

create-release:
runs-on: windows-latest
needs: build-editor
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: Binaries
path: x64/Release/
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./x64/Release/VortexEditor.exe
asset_name: VortexEditor.exe
asset_content_type: application/octet-stream

Loading

0 comments on commit ba4c172

Please sign in to comment.