diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6633569..3acd429 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -2,11 +2,6 @@ name: Docker Build Workflow on: push: - tags: - - '*' # Trigger bei Git-Tags - branches: - - '**' # Trigger bei allen Branches - pull_request: jobs: dockerfile_lint: @@ -25,6 +20,12 @@ jobs: image: docker:dind steps: + - name: Set up nodejs + id: nodejs + shell: sh + run: | + apk add nodejs + - name: Checkout repository uses: actions/checkout@v4