update ci and readme, allow workflow dispatch
Publish / Publish Docker Container (push) Successful in 2m56s

This commit is contained in:
2025-11-30 15:06:02 +11:00
parent 3354b186c1
commit 5a7aec64ca
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ on:
jobs: jobs:
publish: publish:
if: github.ref == 'refs/heads/main' && github.event_name == 'push' if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
name: Publish Docker Container name: Publish Docker Container
runs-on: ubuntu-latest runs-on: ubuntu-latest
+1 -1
View File
@@ -9,7 +9,7 @@ Retention amount: 5
Python 3.12 should be used for development and ideally a virtual environment should be used. With the source checked out run the following command to create a virtual environment. Python 3.12 should be used for development and ideally a virtual environment should be used. With the source checked out run the following command to create a virtual environment.
```bash ```bash
python3 -m venv ./ python3 -m venv .venv
``` ```
The required packages can be installed by running the following command after activating the virtual environment. The required packages can be installed by running the following command after activating the virtual environment.