trying to use upload-artifact action
CI / node-build (push) Successful in 2m18s
CI / docker-build (push) Failing after 15s
CI / deploy (push) Failing after 2s

This commit is contained in:
2026-06-24 08:53:02 +08:00
parent 051d6e6d23
commit c45c64b50c
+4 -3
View File
@@ -28,7 +28,8 @@ jobs:
- name: Create archive - name: Create archive
run: tar -czf docker-images/bee-dashboard/bee-dashboard.tar -C src/build . run: tar -czf docker-images/bee-dashboard/bee-dashboard.tar -C src/build .
- name: Upload folder as artifact - name: Upload folder as artifact
uses: https://gitea.com/actions/gitea-upload-artifact@v4 #uses: https://gitea.com/actions/gitea-upload-artifact@v4
uses: actions/upload-artifact@v3
with: with:
name: build-artifact name: build-artifact
path: docker-images/bee-dashboard/bee-dashboard.tar path: docker-images/bee-dashboard/bee-dashboard.tar
@@ -45,7 +46,7 @@ jobs:
username: woggioni username: woggioni
password: ${{ secrets.PUBLISHER_TOKEN }} password: ${{ secrets.PUBLISHER_TOKEN }}
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: build.artifact name: build.artifact
path: docker-images/bee-dashboard/bee-dashboard.tar path: docker-images/bee-dashboard/bee-dashboard.tar
@@ -67,7 +68,7 @@ jobs:
needs: node-build needs: node-build
steps: steps:
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: build.artifact name: build.artifact
path: docker-images/bee-dashboard/bee-dashboard.tar path: docker-images/bee-dashboard/bee-dashboard.tar