new buidl script no need for node
Build and Push Podman Container / build-and-push (push) Failing after 5s

This commit is contained in:
2026-08-16 17:13:37 +02:00
parent 5c467f27da
commit def0dc3a7f
+9 -1
View File
@@ -10,8 +10,16 @@ jobs:
build-and-push:
runs-on: debian13
steps:
# actions/checkout is a Node.js based action, but the "debian13" runner
# has no Node.js installed, which causes:
# "exec: node: executable file not found in $PATH"
# Do a plain git checkout instead, which only needs git/bash.
- name: Checkout code
uses: actions/checkout@v4
run: |
git init
git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
git fetch --depth 1 origin "${GITHUB_SHA}"
git checkout --force FETCH_HEAD
- name: Log in to Gitea Container Registry
run: |