-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
c5ad74b
commit ba4c172
Showing
6 changed files
with
464 additions
and
353 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,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 | ||
|
Oops, something went wrong.