Downgrading upload/download artifacts.
Some checks failed
Tests / Setup and Checkout (push) Failing after 12m3s
Tests / Backend Setup (Python 3.13 + uv + Environment) (push) Has been skipped
Tests / Frontend Setup (Node.js 24 + Yarn Berry + Build) (push) Has been skipped
Tests / Backend Tests (Python 3.13 + uv) (push) Has been skipped
Tests / Frontend Tests (TypeScript + Vue + Yarn Berry) (push) Has been skipped
Some checks failed
Tests / Setup and Checkout (push) Failing after 12m3s
Tests / Backend Setup (Python 3.13 + uv + Environment) (push) Has been skipped
Tests / Frontend Setup (Node.js 24 + Yarn Berry + Build) (push) Has been skipped
Tests / Backend Tests (Python 3.13 + uv) (push) Has been skipped
Tests / Frontend Tests (TypeScript + Vue + Yarn Berry) (push) Has been skipped
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
@@ -46,6 +46,12 @@ jobs:
|
||||
|
||||
# Detect runner name with better logic
|
||||
DETECTED_RUNNER="${GITEA_RUNNER_NAME:-${RUNNER_NAME:-${ACT_RUNNER_NAME:-${HOSTNAME:-unknown}}}}"
|
||||
|
||||
# Try to extract runner from job container name
|
||||
if [ -n "${JOB_CONTAINER_NAME}" ]; then
|
||||
echo "Job Container: ${JOB_CONTAINER_NAME}"
|
||||
fi
|
||||
|
||||
echo "Detected Runner: $DETECTED_RUNNER"
|
||||
|
||||
# Show system info
|
||||
@@ -88,7 +94,7 @@ jobs:
|
||||
echo "✓ Repository checkout completed"
|
||||
|
||||
- name: Upload source code
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: source-code
|
||||
path: |
|
||||
@@ -109,7 +115,7 @@ jobs:
|
||||
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
||||
|
||||
- name: Download source code
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: source-code
|
||||
path: .
|
||||
@@ -157,7 +163,7 @@ jobs:
|
||||
echo "✓ Backend environment setup complete"
|
||||
|
||||
- name: Upload backend environment
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: backend-environment
|
||||
path: |
|
||||
@@ -178,7 +184,7 @@ jobs:
|
||||
echo "Runner: $RUNNER | User: $(whoami) | OS: $(uname -s)"
|
||||
|
||||
- name: Download source code
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: source-code
|
||||
path: .
|
||||
@@ -242,7 +248,7 @@ jobs:
|
||||
echo "✓ Build successful ($(du -sh dist/ | cut -f1))"
|
||||
|
||||
- name: Upload frontend environment
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: frontend-environment
|
||||
path: |
|
||||
@@ -263,7 +269,7 @@ jobs:
|
||||
echo "Runner: $RUNNER | User: $(whoami)"
|
||||
|
||||
- name: Download backend environment
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: backend-environment
|
||||
path: .
|
||||
@@ -308,7 +314,7 @@ jobs:
|
||||
echo "Runner: $RUNNER | User: $(whoami)"
|
||||
|
||||
- name: Download frontend environment
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: frontend-environment
|
||||
path: .
|
||||
|
||||
Reference in New Issue
Block a user