From 6f5d6215af9fb6f7c0e79cbc0cf3ce9b3323ddff Mon Sep 17 00:00:00 2001 From: David Claeys Date: Tue, 10 Feb 2026 08:21:51 +0100 Subject: [PATCH] update readme and actions --- .../workflows/{action.yml => build_image.yml} | 0 .gitea/workflows/update_readme.yml | 39 +++++++++++++++++++ README.md | 2 + 3 files changed, 41 insertions(+) rename .gitea/workflows/{action.yml => build_image.yml} (100%) create mode 100644 .gitea/workflows/update_readme.yml diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/build_image.yml similarity index 100% rename from .gitea/workflows/action.yml rename to .gitea/workflows/build_image.yml diff --git a/.gitea/workflows/update_readme.yml b/.gitea/workflows/update_readme.yml new file mode 100644 index 0000000..1fee102 --- /dev/null +++ b/.gitea/workflows/update_readme.yml @@ -0,0 +1,39 @@ +name: 'Build docker container' +on: + push: + tags: + - '*' + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ${{ GITHUB_WORKSPACE }} + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install Fetch + run: | + echo "Installing fetch" + apt-get install -y curl + curl -fsSL https://deb.nodesource.com/setup_24.x | bash + npm install node-fetch + - name: Login to DockerHub container registry + uses: https://github.com/docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_PASSWORD }} + - name: Docker Hub Description + uses: peter-evans/dockerhub-description@v5 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_PASSWORD }} + repository: davidquinonescl/hyperion-docker + - name: Build and push + uses: https://github.com/docker/build-push-action@v5 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/README.md b/README.md index 1e569df..1ee2d7c 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ version: '3.3' services: hyperionng: image: git.claeyscloud.com/david/hyperion-docker + #image: ghcr.io/davidclaeysquinones/hyperion-docker:latest + #image: davidquinonescl/hyperion-docker volumes: - /docker/hyperion:/config ports: