Skip to content

Commit

Permalink
Stop P2P output tunnels acting like a perfect sink (#7)
Browse files Browse the repository at this point in the history
Closes #6
  • Loading branch information
ramidzkh authored May 2, 2022
1 parent 2f48442 commit ca49612
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Build
run: ./gradlew downloadAssets runData build
run: ./gradlew downloadAssets runData build --max-workers 1
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
java-version: 17
- name: Build
run: ./gradlew downloadAssets runData build
run: ./gradlew downloadAssets runData build --max-workers 1
env:
APPMEK_VERSION: ${{ github.event.release.tag_name }}
- name: Upload Release Artifact
Expand All @@ -31,7 +31,7 @@ jobs:
asset_name: appmek-${{ github.event.release.tag_name }}.jar
asset_content_type: application/zip
- name: Upload to CurseForge
run: ./gradlew curseforge
run: ./gradlew curseforge --max-workers 1
env:
APPMEK_VERSION: ${{ github.event.release.tag_name }}
CURSEFORGE: ${{ secrets.CURSEFORGE }}
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public boolean isValid(int tank, S stack) {

@Override
public S insertChemical(int tank, S stack, Action action) {
return getEmptyStack();
return stack;
}

@Override
Expand Down

0 comments on commit ca49612

Please sign in to comment.