Skip to content

Commit

Permalink
Add action to save artifacts of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oneup03 committed Jul 20, 2024
1 parent 3a4591c commit 7857e1d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ jobs:
uses: vimtor/[email protected]
with:
files: output/drivers/ README.md LICENSE
dest: "output/${{github.event.repository.name}}.zip"
dest: "output/VRto3D-${{env.CommitHashShort}}.zip"

- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: "VRto3D-${{env.CommitHashShort}}"
path: output/VRto3D-${{env.CommitHashShort}}.zip

- name: GitHub pre-release
uses: "marvinpinto/action-automatic-releases@latest"
Expand All @@ -51,4 +57,4 @@ jobs:
automatic_release_tag: "latest"
prerelease: true
title: "[${{env.CurrentDate}}] ${{github.event.repository.name}} r${{env.CommitCount}}@${{env.CommitHashShort}}"
files: "output/${{github.event.repository.name}}.zip"
files: "output/VRto3D-${{env.CommitHashShort}}.zip"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ Windows-only solution currently, but there are other solutions on Linux like Mon
- Make sure your game runs on old drivers with 3D disabled before attempting to get it working with VRto3D
- If you get a black screen while trying to run SteamVR + 3DVision, you may have to hard reset
- Only Multi-Display setups will work due to 3DVision needing to always be fullscreen to activate
- If you run into one-eye issues or other weirdness, try using DDU and reinstalling the driver
- Complete the Base Installation section
- If you want full resolution per eye, enable DSR 4x in Nvidia Control Panel -> Manage 3D Settings
- Modify the `window_width` and `window_height` in `Steam\steamapps\common\SteamVR\drivers\vrto3d\resources\settings\default.vrsettings` to match your fullscreen resolution
Expand Down

0 comments on commit 7857e1d

Please sign in to comment.