Skip to content

Commit

Permalink
update ci node version
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara committed Aug 15, 2023
1 parent 1592e10 commit 6e00f0f
Showing 1 changed file with 22 additions and 25 deletions.
47 changes: 22 additions & 25 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (c) Srevin Saju 2020. All rights reserved
# (c) Srevin Saju 2020. All rights reserved
# Licensed under MIT License
# Continuous Integration to release configured AppImages for Altus

Expand All @@ -17,13 +17,13 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 15
node-version: 18

- name: Current Directory Structure
run: |
ls
git describe --tags --always
- name: Build Altus
run: |
yarn install
Expand All @@ -47,9 +47,8 @@ jobs:
uses: actions/[email protected]
with:
name: altus-continuous-x86_64.AppImage
path: 'dist/appimage/'


path: "dist/appimage/"

Darwin:
runs-on: macos-latest
steps:
Expand All @@ -62,7 +61,7 @@ jobs:
run: |
ls
git describe --tags --always
- name: Build Altus
run: |
yarn install
Expand All @@ -77,8 +76,8 @@ jobs:
uses: actions/[email protected]
with:
name: altus-continuous-x86_64.dmg
path: 'dist/darwin/'
path: "dist/darwin/"

Windows:
runs-on: windows-latest
steps:
Expand All @@ -91,7 +90,7 @@ jobs:
run: |
ls
git describe --tags --always
- name: Build Altus
run: |
yarn install
Expand All @@ -102,29 +101,27 @@ jobs:
mkdir -p dist/windows
mv dist/*.exe dist/windows/.
cd dist/windows
- name: Upload Exe
uses: actions/[email protected]
with:
name: altus-continuous-x86_64.exe
path: 'dist/windows/'
path: "dist/windows/"

Release:
needs: [AppImage, Windows, Darwin]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v2

- name: Release
uses: marvinpinto/[email protected]
with:
prerelease: false
files: |
altus-continuous-x86_64.AppImage
altus-continuous-x86_64.exe
altus-continuous-x86_64.dmg
repo_token: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/download-artifact@v2

- name: Release
uses: marvinpinto/[email protected]
with:
prerelease: false
files: |
altus-continuous-x86_64.AppImage
altus-continuous-x86_64.exe
altus-continuous-x86_64.dmg
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6e00f0f

Please sign in to comment.