@@ -0,0 +1,35 @@
|
||||
name: build-and-push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, master]
|
||||
|
||||
env:
|
||||
# Hostname only (no scheme) — Gitea container registry on this demo stack.
|
||||
REGISTRY: gitea-dev.alertaware.com
|
||||
IMAGE: demo
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set image tag
|
||||
id: meta
|
||||
run: echo "tag=${GITHUB_SHA::8}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Login to Gitea container registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE }}:${{ steps.meta.outputs.tag }}
|
||||
@@ -0,0 +1,3 @@
|
||||
FROM public.ecr.aws/docker/library/nginx:1.27-alpine
|
||||
COPY index.html /usr/share/nginx/html/index.html
|
||||
EXPOSE 80
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Gitea demo</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Gitea Actions demo</h1>
|
||||
<p>Built and pushed via Gitea Actions on the AlertAware dev cluster.</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user