diff options
Diffstat (limited to '.github/workflows/nightly.yml')
| -rw-r--r-- | .github/workflows/nightly.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 58188a49..460e7472 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -19,4 +19,15 @@ jobs: uses: microsoft/setup-msbuild@v2 - name: Build - run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64"
\ No newline at end of file + run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64" + + - name: Zip Build + run: 7z a -r LCEWindows64.zip ./x64/Release/* + + - name: Update release + uses: eine/tip@master + with: + tag: nightly + rm: true + token: ${{ secrets.GITHUB_TOKEN }} + files: LCEWindows64.zip
\ No newline at end of file |
