Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
meoowe authored May 12, 2024
1 parent 7ca6054 commit 23f1812
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
Expand All @@ -38,3 +38,19 @@ jobs:
BRANCH: github-pages
FOLDER: build/dist/js/productionExecutable
CLEAN: true
- name: Upload JS
uses: actions/upload-artifact@v1.0.0
with:
name: JS Bundle
path: "build/dist/js/productionExecutable"
- name: Upload Jar
uses: actions/upload-artifact@v1.0.0
with:
name: Jar Files
path: "build/libs"
- name: Upload Linux
uses: actions/upload-artifact@v1.0.0
with:
name: Linux Executable
path: "build/platforms"

0 comments on commit 23f1812

Please sign in to comment.