Skip to content

Commit

Permalink
Merge branch 'master' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Aszusz committed Feb 6, 2024
2 parents 8b4f590 + 0cc4dcc commit 0de7042
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/man-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Manual - Release

on:
workflow_dispatch:
workflow_call:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Build info
run: |
echo "Stub flow"
14 changes: 14 additions & 0 deletions .github/workflows/sub-build-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: SUB - Build on Linux

on:
workflow_dispatch:
workflow_call:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Build info
run: |
echo "Stub flow"
14 changes: 14 additions & 0 deletions .github/workflows/sub-build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: SUB - Build on MacOS

on:
workflow_dispatch:
workflow_call:

jobs:
build:
runs-on: macos-latest

steps:
- name: Build info
run: |
echo "Stub flow"
14 changes: 14 additions & 0 deletions .github/workflows/sub-build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: SUB - Build on Windows

on:
workflow_dispatch:
workflow_call:

jobs:
build:
runs-on: windows-latest

steps:
- name: Build info
run: |
echo "Stub flow"
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ mkdir -p $TMP_DIR

# unzip and setup project
cd $TMP_DIR
unzip $ZIP_FILE
unzip $ZIP_FILE || EXIT_CODE=$?
if [ "$EXIT_CODE" -gt 1]; then
echo "unzip failed with exit code $EXIT_CODE";
exit $EXIT_CODE;
fi
sudo chown -R vagrant.vagrant .

# Read default user password
PASSWORD=$(jq -r '.serverSetup | .admin | .password' {{ domino_home_dir }}/setup.json)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ fi
sudo su -c "mkdir -p '$TARGET_FULL'" - domino

# unzip the application
sudo su -c "unzip -q -d '$TARGET_FULL' '$ZIP_FILE_CHOWN'" - domino
sudo su -c "unzip -q -d '$TARGET_FULL' '$ZIP_FILE_CHOWN'" - domino || EXIT_CODE=$?
if [ "$EXIT_CODE" -gt 1]; then
echo "unzip failed with exit code $EXIT_CODE";
exit $EXIT_CODE;
fi
sudo chown -R domino.domino "$TARGET_FULL"

# Cleanup
sudo rm -f "$ZIP_FILE_CHOWN"
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ mkdir -p $TMP_DIR

# unzip and setup project
cd $TMP_DIR
unzip $ZIP_FILE
unzip $ZIP_FILE || EXIT_CODE=$?
if [ "$EXIT_CODE" -gt 1]; then
echo "unzip failed with exit code $EXIT_CODE";
exit $EXIT_CODE;
fi
sudo chown -R vagrant.vagrant .
ln -s {{ service_home_dir }}/notes.ini

# Update Domino path
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## Super Human Installer [0.8.21]

This release reintroduce usage of Domino 12.0.1. It contains some small UI bug fixes.

### Changed

* Reintroduce Domino 12.0.1 ([#103](https://github.com/Moonshine-IDE/Super.Human.Installer/issues/103))

### Fixed

* Server > Advanced > Network Interface Should Look Like Dropdown ([#94](https://github.com/Moonshine-IDE/Super.Human.Installer/issues/94))
* Add dropdown arrow in Settings of server -> Advance -> Network Interface ([#96](https://github.com/Moonshine-IDE/Super.Human.Installer/issues/96))

## Super Human Installer [0.8.20]

The release update source code of application to use newest Haxe 4.3.1. It contains some small bug fixes.
Expand Down

0 comments on commit 0de7042

Please sign in to comment.