patch: migrate to gitea actions #14

Merged
keligrubb merged 5 commits from migrate-to-gitea-actions into main 2026-03-04 19:49:17 +00:00
Showing only changes of commit 60304c09da - Show all commits

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 }}