Compare commits

..

2 Commits

Author SHA1 Message Date
32f5262b93 Update Gitea Container Registry URL in workflow configuration
Some checks failed
build-and-push-docker / docker (push) Failing after 23s
2025-08-18 12:53:10 +00:00
34dc770854 Update devcontainer image to use node:18 for consistency 2025-08-18 12:53:05 +00:00
2 changed files with 2 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "Noisedash Dev",
"image": "mcr.microsoft.com/devcontainers/node:20-bookworm",
"image": "node:18",
"forwardPorts": [8080, 1432],
"portsAttributes": {
"8080": { "label": "Vue dev server" },

View File

@@ -25,7 +25,7 @@ jobs:
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY_HOST }}
registry: gitea.purpleraft.com
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
@@ -59,11 +59,3 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
env:
# Example: registry.example.com or gitea.example.com
REGISTRY_HOST: ${{ secrets.REGISTRY_HOST }}
# Example: ryan (your user or org in Gitea)
REGISTRY_OWNER: ${{ secrets.REGISTRY_OWNER }}
# Example: noisedash (this repo name)
REGISTRY_REPO: ${{ secrets.REGISTRY_REPO }}