From 222525017f395d53091767f5a1caa3f0e55f68f2 Mon Sep 17 00:00:00 2001 From: HackDev <80620538+Hackx2@users.noreply.github.com> Date: Wed, 8 Jan 2025 01:18:53 +0000 Subject: [PATCH] Workflows --- .github/workflows/linux.yml | 5 +++-- .github/workflows/mac.yml | 7 ++++--- .github/workflows/windows.yml | 5 +++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c84ed828..9e8ca396 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -10,6 +10,7 @@ on: jobs: buildLinux: + name: Linux Build runs-on: ubuntu-latest steps: @@ -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 diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index c99be61e..b3cb0264 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -1,4 +1,4 @@ -name: Mac Build +name: MacOs Build on: push: @@ -10,6 +10,7 @@ on: jobs: buildMac: + name: MacOs Build runs-on: macos-15 steps: @@ -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 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1cf85dfc..53eaf13b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -10,6 +10,7 @@ on: jobs: buildWindows: + name: Windows Build runs-on: windows-latest steps: - uses: actions/checkout@v2.3.0 @@ -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