Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
kkllffaa committed Mar 25, 2023
1 parent 5f6e70a commit 2a69739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
./gradlew build
- name: Read version number
id: getversion
run: echo "::set-output name=version::$(ls ./build/libs/ | awk -F'-' '/download/ {print $2}' | rev | cut -c 5- | rev)"
run: echo "version=$(ls ./build/libs/ | awk -F'-' '/download/ {print $2}' | rev | cut -c 5- | rev)" >> $GITHUB_OUTPUT
- name: Read fabric version number
id: getversionfabric
run: echo "::set-output name=version::$(awk -F'"' '/ VERSION / {print $2}' ./src/main/java/net/fabricmc/loader/impl/FabricLoaderImpl.java)"
run: echo "version=$(awk -F'"' '/ VERSION / {print $2}' ./src/main/java/net/fabricmc/loader/impl/FabricLoaderImpl.java)" >> $GITHUB_OUTPUT
- name: Create Dev Build release
uses: marvinpinto/action-automatic-releases@latest
with:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/kkllffaa/fabricmodselector/Update.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class Update {
public static final String repo = "kkllffaa.fabric-mod-selector.releases:download:";
public static final String git = "https://github.com/";
//public static final String git = "http://localhost/";

public final File mcjson;
public final Version installed, latest;

Expand Down

0 comments on commit 2a69739

Please sign in to comment.