From 647cdea02229a118284420b9135518342127895c Mon Sep 17 00:00:00 2001 From: Romain Beauxis Date: Sun, 2 Mar 2025 13:19:11 -0600 Subject: [PATCH] Try native upload. --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 309ada9e66..db9b299c16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -421,12 +421,11 @@ jobs: sudo -u opam -E ./.github/scripts/build-apk.sh ${{ needs.build_details.outputs.branch }} ${{ matrix.os }} ${{ matrix.platform }} ${{ matrix.alpine-arch }} "${{ needs.build_details.outputs.is_rolling_release }}" "${{ needs.build_details.outputs.is_release }}" "${{ needs.build_details.outputs.minimal_exclude_deps }}" - name: Upload alpine packages artifacts if: needs.build_details.outputs.is_fork != 'true' && matrix.os == 'alpine' - uses: savonet/aws-s3-docker-action@master - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - SOURCE: ${{ github.workspace }}/${{ github.run_number }}/${{ matrix.os }}_${{ matrix.platform }}/alpine - TARGET: ${{ needs.build_details.outputs.s3-artifact-basepath }} + uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 + with: + name: ${{ steps.build_deb.outputs.basename }} + path: ${{ github.workspace }}/${{ github.run_number }}/${{ matrix.os }}_${{ matrix.platform }}/alpine + if-no-files-found: error - name: Cleanup if: ${{ always() }} run: |