college-bot-v2/.gitea/workflows/docker-publish.yaml

19 lines
810 B
YAML
Raw Normal View History

2024-04-25 19:21:01 +01:00
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]
2024-04-25 19:21:01 +01:00
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 -t git.i-am.nexus/nex/college-bot:$(git rev-parse --short "$GITHUB_SHA") .
2024-04-25 19:21:01 +01:00
- 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 && docker push git.i-am.nexus/nex/college-bot:$(git rev-parse --short "$GITHUB_SHA")