Skip to content

Commit

Permalink
Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Jan 8, 2025
1 parent dbf96cb commit 2225250
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
buildLinux:
name: Linux Build
runs-on: ubuntu-latest

steps:
Expand All @@ -28,8 +29,8 @@ jobs:
run: echo "${{github.run_id}}" > VERSION
- name: Compile
run: haxelib run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}"
- name: Publish Artifact
- name: Uploading artifact (entire build)
uses: actions/upload-artifact@v4
with:
name: linuxBuild
name: Astro Engine
path: export/release/linux/bin
7 changes: 4 additions & 3 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Mac Build
name: MacOs Build

on:
push:
Expand All @@ -10,6 +10,7 @@ on:

jobs:
buildMac:
name: MacOs Build
runs-on: macos-15

steps:
Expand All @@ -24,8 +25,8 @@ jobs:
run: echo "${{github.run_id}}" > VERSION
- name: Compile
run: haxelib run lime build mac --app-version="4.0.0-${{ github.run_id}}"
- name: Publish Artifact
- name: Uploading artifact (entire build)
uses: actions/upload-artifact@v4
with:
name: macBuild
name: Astro Engine
path: export/release/macos/bin
5 changes: 3 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
buildWindows:
name: Windows Build
runs-on: windows-latest
steps:
- uses: actions/[email protected]
Expand All @@ -24,8 +25,8 @@ jobs:
run: echo "${{github.run_id}}" > VERSION
- name: Compile
run: haxelib run lime build windows --app-version="4.0.0-${{ github.run_id}}"
- name: Publish Artifact
- name: Uploading artifact (entire build)
uses: actions/upload-artifact@v4
with:
name: windowsBuild
name: Astro Engine
path: export/release/windows/bin

0 comments on commit 2225250

Please sign in to comment.