mirror of
https://github.com/ethanrusz/scouter.git
synced 2025-04-20 14:06:32 -04:00
Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
15a9be25cc | |||
c1121238d8 | |||
33a5988ef6 | |||
9987bd956b | |||
2ec2ec8d3a | |||
11b003bca4 | |||
8c992591a8 | |||
1a95687e59 |
3 changed files with 44 additions and 13 deletions
|
@ -1,13 +1,11 @@
|
||||||
name: Build and Push to git.beans.team
|
name: Build and Push to git.beans.team
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-registry:
|
update-registry:
|
||||||
name: Update Registry Image
|
name: Update Registry Image
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -28,6 +26,4 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: git.beans.team/em/scouter:latest
|
||||||
git.beans.team/em/scouter:latest
|
|
||||||
git.beans.team/em/scouter:${{ github.sha }}
|
|
28
.github/workflows/build-release.yml
vendored
Normal file
28
.github/workflows/build-release.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
name: Build and Push Releases
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [ published ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-registry:
|
||||||
|
name: Update Registry Image
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Login to git.beans.team
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.beans.team
|
||||||
|
username: em
|
||||||
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build and Push Image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: git.beans.team/em/scouter:${{ github.event.release.tag_name }}
|
19
app.py
19
app.py
|
@ -25,16 +25,23 @@ class Run:
|
||||||
self.outside_power = moon.outside_max_power
|
self.outside_power = moon.outside_max_power
|
||||||
|
|
||||||
|
|
||||||
def find_spawnlist(remaining_power: int, creatures: list[Creature]) -> list[str]:
|
def find_spawnlist(remaining_power: int, creatures: list[Creature]) -> list[str] | None:
|
||||||
"""
|
"""
|
||||||
Given a run, return all possible spwns for location.
|
Given a run, return all possible spawns for location.
|
||||||
|
|
||||||
:param remaining_power: The remaining power in the current location.
|
:param remaining_power: The remaining power in the current location.
|
||||||
:return: A list of all creatures that may still spawn.
|
:return: A list of all creatures that may still spawn or None.
|
||||||
"""
|
"""
|
||||||
return sorted(
|
if remaining_power == 0:
|
||||||
|
return None
|
||||||
|
|
||||||
|
spawnable = sorted(
|
||||||
[creature.name for creature in creatures if creature.power <= remaining_power]
|
[creature.name for creature in creatures if creature.power <= remaining_power]
|
||||||
)
|
)
|
||||||
|
if spawnable != []:
|
||||||
|
return spawnable
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
@ -134,7 +141,7 @@ def main():
|
||||||
st.write(find_spawnlist(run.outside_power, outside_creatures))
|
st.write(find_spawnlist(run.outside_power, outside_creatures))
|
||||||
else:
|
else:
|
||||||
st.error(
|
st.error(
|
||||||
f"Power level exceedes maximum possible for {run.moon.name}."
|
f"Power level exceeds maximum possible for {run.moon.name}."
|
||||||
)
|
)
|
||||||
|
|
||||||
with right_column:
|
with right_column:
|
||||||
|
@ -173,7 +180,7 @@ def main():
|
||||||
st.write(find_spawnlist(run.inside_power, inside_creatures))
|
st.write(find_spawnlist(run.inside_power, inside_creatures))
|
||||||
else:
|
else:
|
||||||
st.error(
|
st.error(
|
||||||
f"Power level exceedes maximum possible for {run.moon.name}."
|
f"Power level exceeds maximum possible for {run.moon.name}."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue