Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed May 3, 2022
1 parent 6eaa309 commit 61c3c01
Showing 1 changed file with 10 additions and 22 deletions.
32 changes: 10 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ jobs:
Linux:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Submodules
run: |
git submodule sync
git submodule update --init
submodules: recursive
- name: Install Dependencies
run: |
sudo apt-get update
Expand All @@ -37,13 +34,10 @@ jobs:
MacOS:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Submodules
run: |
git submodule sync
git submodule update --init
submodules: recursive
- name: Build
run: |
gem install xcpretty
Expand All @@ -58,20 +52,17 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: LumosEditorMAC.zip
files: artifacts/LumosEditorMAC.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

iOS:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Submodules
run: |
git submodule sync
git submodule update --init
submodules: recursive
- name: Build
run: |
gem install xcpretty
Expand All @@ -86,7 +77,7 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: LumosEditorIOS.zip
files: artifacts/LumosEditorIOS.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -95,13 +86,10 @@ jobs:
env:
MSBUILD_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Submodules
run: |
git submodule sync
git submodule update --init
submodules: recursive
- name: Generate Project
run: |
cd Scripts
Expand Down

0 comments on commit 61c3c01

Please sign in to comment.