try with a run command instead of a container
diff --git a/.github/workflows/nightlies.yml b/.github/workflows/nightlies.yml
index a91f627..889edbe 100644
--- a/.github/workflows/nightlies.yml
+++ b/.github/workflows/nightlies.yml
@@ -14,6 +14,6 @@
           --standalone
           --output=${{ env.OUTFILE }}
             ${{ env.INFILE }}
-    - uses: wei/curl@v1
-      with:
-        args: --user ${{ secrets.NIGHTLIES_USER }}:${{ secrets.NIGHTLIES_TOKEN }} --upload-file ${{ env.OUTFILE }} https://nightlies.apache.org/ghactions-publishing.html
+    - name: upload
+      run: |
+        curl --user ${{ secrets.NIGHTLIES_USER }}:${{ secrets.NIGHTLIES_TOKEN }} --upload-file ${{ env.OUTFILE }} https://nightlies.apache.org/ghactions-publishing.html