Skip to content

Commit

Permalink
3 wwqfd
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Mar 27, 2024
1 parent 3a11a07 commit 3af2ad5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 62 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# This is a basic workflow to help you get started with Actions

name: Build
Expand All @@ -6,9 +7,9 @@ name: Build
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main, experimental]
branches: [ main, experimental ]
pull_request:
branches: [main, experimental]
branches: [ main, experimental ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -42,12 +43,14 @@ jobs:
- name: Create Version Tag
run: echo "${{github.run_id}}" > VERSION
- name: Compile
run: haxelib run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}"
run: |
haxelib fixrepo
haxelib run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}"
- name: Publish Artifact
uses: actions/[email protected]
with:
name: linuxBuild
path: "export/release/linux/bin"
path: 'export/release/linux/bin'
#---
buildWindows:
runs-on: windows-latest
Expand Down Expand Up @@ -105,4 +108,4 @@ jobs:
uses: actions/[email protected]
with:
name: macBuild
path: export/release/macos/bin
path: export/release/macos/bin
57 changes: 0 additions & 57 deletions Preloader.hx

This file was deleted.

0 comments on commit 3af2ad5

Please sign in to comment.