Files
InfantrySkillCalculator/.gitea/workflows/build_push.yaml
MaxJa4 900787e998
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
Try with localhost
2024-02-11 22:45:33 +01:00

28 lines
680 B
YAML

name: Build and Push Docker Image
run-name: Docker image is being constructed 🚀
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Log in to Gitea Docker Registry
uses: docker/login-action@v3
with:
registry: gitea.maximilian.link
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: localhost:3000/maxi/isc:dev