Skip to content

Commit 29bbaaf

Browse files
committed
Fixes
1 parent 437184a commit 29bbaaf

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ on:
22
release:
33
types: [created]
44

5+
env:
6+
ASI_LOADER_VERSION: "4.68"
7+
58
name: Build Release
69
jobs:
710
build:
@@ -21,15 +24,15 @@ jobs:
2124
args: --release
2225
- name: Download Ultimate ASI Loader
2326
run: |
24-
wget https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases/download/v4.68/Ultimate-ASI-Loader_x64.zip
27+
Invoke-WebRequest "https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases/download/v${env:ASI_LOADER_VERSION}/Ultimate-ASI-Loader_x64.zip" -OutFile ./Ultimate-ASI-Loader_x64.zip
2528
7z x .\Ultimate-ASI-Loader_x64.zip dinput8.dll
2629
- run: mkdir staging
2730
- name: Create the mod archive
2831
working-directory: staging
2932
run: |
3033
mkdir -p ./system/plugins
3134
cp ../target/release/crony_gui.dll ./system/plugins/crony_gui.asi
32-
cp ./dinput8.dll ./system/version.dll
35+
cp ../dinput8.dll ./system/version.dll
3336
7z a -mx=9 -r ./crony-gui.zip *
3437
- name: Upload the mod archive
3538
uses: actions/upload-release-asset@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Small WIP script hook/extender for Elex 2
33

44
### how to
5-
This library uses [Rhai](https://rhai.rs) as the scripting languages.
5+
This library uses [Rhai](https://rhai.rs) as the scripting language.
66
You can find available game functions [here](https://github.com/jac3km4/crony-gui/tree/master/doc/FUNCTIONS.md).
77

88
### demo

0 commit comments

Comments
 (0)