college-bot-v2/.gitea/workflows/docker-publish.yaml
Nexus d49eefb76d
Some checks are pending
Build and Publish Jimmy.2 / build_and_publish (push) Waiting to run
Reduce docker space
i forgot each container build is >1GB, so each commit is effectively >1GB, and I do NOT have that kind of storage.

Signed-off-by: Nexus <git@nexy7574.co.uk>
2024-05-04 22:17:24 +01:00

19 lines
No EOL
652 B
YAML

name: Build and Publish Jimmy.2
run-name: Build and Publish Jimmy.2
on: [push]
jobs:
build_and_publish:
runs-on: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build Docker image
run: |
docker build -t git.i-am.nexus/nex/college-bot:latest .
- name: Log into container registry
run: |
docker login -u ${{ secrets.CR_USERNAME }} -p ${{ secrets.CR_PASSWORD }} git.i-am.nexus
- name: Push to container registry
run: |
docker push git.i-am.nexus/nex/college-bot:latest