mirror of
https://github.com/ethanrusz/scouter.git
synced 2025-04-20 14:06:32 -04:00
Compare commits
No commits in common. "15a9be25ccc6aa6eb4a8834702662e8f5c4968c9" and "9987bd956b49918564f1904eb03e3e9a9be9a7aa" have entirely different histories.
15a9be25cc
...
9987bd956b
3 changed files with 9 additions and 33 deletions
|
@ -1,11 +1,13 @@
|
||||||
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
|
||||||
|
@ -26,4 +28,6 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: git.beans.team/em/scouter:latest
|
tags: |
|
||||||
|
git.beans.team/em/scouter:latest
|
||||||
|
git.beans.team/em/scouter:${{ github.sha }}
|
28
.github/workflows/build-release.yml
vendored
28
.github/workflows/build-release.yml
vendored
|
@ -1,28 +0,0 @@
|
||||||
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 }}
|
|
4
app.py
4
app.py
|
@ -141,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 exceeds maximum possible for {run.moon.name}."
|
f"Power level exceedes maximum possible for {run.moon.name}."
|
||||||
)
|
)
|
||||||
|
|
||||||
with right_column:
|
with right_column:
|
||||||
|
@ -180,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 exceeds maximum possible for {run.moon.name}."
|
f"Power level exceedes maximum possible for {run.moon.name}."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue