Compare commits

...

25 Commits
v0.0.1 ... main

Author SHA1 Message Date
DrMaxNix e60a89c462 Update .gitea/workflows/demo.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 20:32:12 +02:00
DrMaxNix cd52d9d6d5 Update .gitea/workflows/demo.yaml 2024-04-20 20:31:59 +02:00
DrMaxNix 10c933bf6f Update index.php
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 19:48:44 +02:00
DrMaxNix 4d1b975b1b Update .gitea/workflows/build-packages.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 19:48:19 +02:00
DrMaxNix 3ed9c7581b Update index.php
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 19:40:23 +02:00
DrMaxNix e841d25d43 Update .gitea/workflows/build-packages.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 19:40:13 +02:00
DrMaxNix fe53460b9d Update index.php
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 19:33:50 +02:00
DrMaxNix 92afe04d52 Update .gitea/workflows/build-packages.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 17:38:09 +02:00
DrMaxNix 80ae182bbf Update .gitea/workflows/demo.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s Details
2024-04-20 17:37:32 +02:00
DrMaxNix 21ad1fe575 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 17:10:58 +02:00
DrMaxNix 173ade70bd change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 17:02:55 +02:00
DrMaxNix 46633f4520 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:47:45 +02:00
DrMaxNix 8fe17f76f0 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:43:21 +02:00
DrMaxNix be21f096a5 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:42:17 +02:00
DrMaxNix 60d2e8aea2 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:40:59 +02:00
DrMaxNix 8ea0506a1f change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:35:39 +02:00
DrMaxNix 3fea7fdcfb change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:35:31 +02:00
DrMaxNix f79de565af change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:32:59 +02:00
DrMaxNix 09cfb268c2 Delete testfile
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:29:19 +02:00
DrMaxNix 5474916419 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:28:59 +02:00
DrMaxNix 30e0c8ddee change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:28:36 +02:00
DrMaxNix 5a21c94a79 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:28:10 +02:00
DrMaxNix 2fe2d2fa66 change
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:21:19 +02:00
DrMaxNix 64dd25a6a2 Update .gitea/workflows/build-packages.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:15:28 +02:00
DrMaxNix d89298777a Update .gitea/workflows/build-packages.yaml
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
2024-04-20 16:00:01 +02:00
6 changed files with 67 additions and 24 deletions

View File

@ -1,21 +0,0 @@
name: Build and Publish Docker Packages
on:
release:
types:
- published
jobs:
build-and-publish-docker-packages:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: https://github.com/actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

View File

@ -0,0 +1,55 @@
name: Build and Publish Docker Packages
on:
release:
types:
- published
env:
REGISTRY_GIT: git.tjdev.de
IMAGE_NAME: ${{ gitea.repository }}
jobs:
build-and-publish-docker-packages:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to DockerHub Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to Git Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY_GIT }}
username: ${{ secrets.GIT_PACKREG_USERNAME }}
password: ${{ secrets.GIT_PACKREG_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
${{ env.REGISTRY_GIT }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
labels: |
org.opencontainers.image.licenses=MIT
org.opencontainers.image.url=https://www.flakeframework.net
annotations: |
org.opencontainers.image.licenses=MIT
org.opencontainers.image.url=https://www.flakeframework.net
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@ -10,7 +10,7 @@ jobs:
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: https://github.com/actions/checkout@v3
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository

9
LICENSE Normal file
View File

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2024 Flake Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,3 +1,4 @@
<?php
echo("<pre style='background-color: #af8;'>" . print_r($_SERVER, true) . "</pre>")
echo("<pre style='background-color: #f8a;'>" . "v0.0.6" . "</pre>");
echo("<pre style='background-color: #af8;'>" . print_r($_SERVER, true) . "</pre>");
?>

View File

@ -1 +0,0 @@
asdsad