Compare commits

...

4 Commits

Author SHA1 Message Date
droideparanoico 8324ecd1e7 Simplified gitea workflow
Build & Deploy / build-and-deploy (push) Successful in 36s
2026-07-07 16:43:02 +02:00
droideparanoico 0567a1d29b Added dostalgia icons
Build & Deploy / build-and-deploy (push) Successful in 11s
2026-06-18 12:56:32 +02:00
droideparanoico f2360cdae8 Gitea workflow
Build & Deploy / build-and-deploy (push) Successful in 11s
2026-06-14 14:26:42 +02:00
droideparanoico 59245a469d Updated screenshot 2026-06-14 14:09:09 +02:00
5 changed files with 29 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# This workflow builds DOStalgia whenever code is pushed to main.
# The runner has Docker socket access so it can manage containers on the host.
# See: https://docs.gitea.com/usage/actions
name: Build & Deploy
run-name: Build ${{ gitea.sha.substring(0, 7) }}
on:
push:
branches: [ main ]
env:
IMAGE_NAME: dostalgia
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Docker image
run: |
docker build -t ${{ env.IMAGE_NAME }}:${{ gitea.sha }} .
docker tag ${{ env.IMAGE_NAME }}:${{ gitea.sha }} ${{ env.IMAGE_NAME }}:latest
- name: Clean up old images
run: docker image prune -f --filter "until=24h"
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 KiB

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB