A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

via/alice-sdv-demo Private

A-SW 코드-배포 파이프라인 검증용 ALICE SDV 예제

https://git.agrithing.ai/via/alice-sdv-demo.git
13 commits
COMMIT DETAIL

chore: synchronize ALICE SDV pipeline sample

A-SW Pipeline <[email protected]> · 2026. 8. 2. 오전 6:13:49
e5ffbdfad3db857cf62f6aa710d824effa906693
1 changed files +6 −3 parent 5492626
modified .gitea/workflows/asw-pipeline.yml +6−3 View file
@@ -57,6 +57,9 @@ jobs:
57 57 - name: Activate on the ALICE local simulator
58 58 env:
59 59 DEPLOY_TOKEN: ${{ secrets.LOCAL_SIMULATOR_DEPLOY_TOKEN }}
60 + ASW_REPOSITORY: ${{ gitea.repository }}
61 + ASW_RUN_ID: ${{ gitea.run_id }}
62 + ASW_COMMIT_SHA: ${{ gitea.sha }}
60 63 run: |
61 64 CHECKSUM="$(cut -d ' ' -f 1 dist/checksums.sha256)"
62 65 VERSION="$(python -c 'import json; print(json.load(open("package/manifest.json"))["version"])')"
@@ -64,9 +67,9 @@ jobs:
64 67 -X POST \
65 68 -H "Authorization: Bearer ${DEPLOY_TOKEN}" \
66 69 -H "Content-Type: application/octet-stream" \
67 -H "X-A-SW-Repository: ${GITEA_REPOSITORY}" \
68 -H "X-A-SW-Run-ID: ${GITEA_RUN_ID}" \
69 -H "X-A-SW-Commit-SHA: ${GITEA_SHA}" \
70 + -H "X-A-SW-Repository: ${ASW_REPOSITORY}" \
71 + -H "X-A-SW-Run-ID: ${ASW_RUN_ID}" \
72 + -H "X-A-SW-Commit-SHA: ${ASW_COMMIT_SHA}" \
70 73 -H "X-A-SW-Artifact-Name: alice-sdv-reference.tar.gz" \
71 74 -H "X-A-SW-Checksum: ${CHECKSUM}" \
72 75 -H "X-A-SW-Version: ${VERSION}" \