5ef905449d
* Add 24h growth indicator * Fix float math * Fix some bugs * Trim decimals * Add 24 hour observed growth * Add beginning height option * Changed startup message to ping me * Add a ping reminder and setup command for it * Setup automatic water reminders * Improved workflows * New water readiness system * Documentation Time * Fix slash command link * Fix linebreaks * Readability improvements * Forgot to allow checking in prod * Switch to ephemeral reply * Restructuring and new help messages * Not meant to be uploaded * Documentation update * Changing the way reminders are deleted * Tweak timings * Adjust readiness detection system * moar tweekz * fix reminders * Updates to water reminders
25 lines
526 B
YAML
25 lines
526 B
YAML
name: Silvanus-Dev Dockerization
|
|
|
|
on:
|
|
push:
|
|
branches: [ "*-dev" ]
|
|
|
|
env:
|
|
DHUB_UNAME: ${{ secrets.DHUB_UNAME }}
|
|
DHUB_PWORD: ${{ secrets.DHUB_PWORD }}
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag v0idf1sh/silvanus-dev
|
|
- name: Log into Docker Hub
|
|
run: docker login -u $DHUB_UNAME -p $DHUB_PWORD
|
|
- name: Push image to Docker Hub
|
|
run: docker push v0idf1sh/silvanus-dev
|