cleanup ci stages
Some checks failed
PR / docker-build (pull_request) Successful in 56s
PR / install (pull_request) Successful in 1m12s
PR / test (pull_request) Failing after 15s
PR / lint (pull_request) Failing after 26s
PR / e2e (pull_request) Failing after 6m10s

This commit is contained in:
Madison Grubb
2026-03-04 14:16:25 -05:00
parent fd31038cb7
commit 60304c09da

View File

@@ -19,7 +19,7 @@ jobs:
run: npm ci
- name: Upload node_modules
uses: actions/upload-artifact@v7
uses: https://gitea.com/actions/gitea-upload-artifact@main
with:
name: node-modules
path: node_modules/
@@ -37,7 +37,7 @@ jobs:
cache: "npm"
- name: Restore node_modules
uses: actions/download-artifact@v8
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node-modules
@@ -57,7 +57,7 @@ jobs:
cache: "npm"
- name: Restore node_modules
uses: actions/download-artifact@v8
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node-modules
@@ -77,7 +77,7 @@ jobs:
cache: "npm"
- name: Restore node_modules
uses: actions/download-artifact@v8
uses: https://github.com/ChristopherHX/gitea-download-artifact@main
with:
name: node-modules
@@ -97,6 +97,13 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Set Docker image tag
id: image
run: |
REGISTRY="${GITHUB_SERVER_URL#https://}"
REGISTRY="${REGISTRY#http://}"
echo "tag=${REGISTRY}/${{ github.repository }}:latest" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
@@ -105,4 +112,4 @@ jobs:
with:
context: .
push: false
tags: ${{ github.server_url }}/${{ github.repository }}:latest
tags: ${{ steps.image.outputs.tag }}