From 2df10eec657e3787ba8f85fb5bcd457f05dc7756 Mon Sep 17 00:00:00 2001 From: Samir Boulema Date: Sat, 8 Oct 2022 16:09:24 -0700 Subject: [PATCH] Fix other curl --- .github/workflows/workflow.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index eafc551..c40649b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -20,19 +20,19 @@ jobs: curl: -F files[]=@brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=mariadb&errorResponse=zip -o MariaDB.zip - name: Convert to Postgres - uses: wei/curl@v1 + uses: enflo/curl-action@master with: - args: --upload-file brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=postgresql&errorResponse=zip -o Postgres.zip + curl: -F files[]=@brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=postgresql&errorResponse=zip -o Postgres.zip - name: Convert to MySQL - uses: wei/curl@v1 + uses: enflo/curl-action@master with: - args: --upload-file brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=mysql&errorResponse=zip -o MySQL.zip + curl: -F files[]=@brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=mysql&errorResponse=zip -o MySQL.zip - name: Convert to Excel - uses: wei/curl@v1 + uses: enflo/curl-action@master with: - args: --upload-file brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=xlsx&errorResponse=zip -o Excel.zip + curl: -F files[]=@brewDB.sqlite https://www.rebasedata.com/api/v1/convert?outputFormat=xlsx&errorResponse=zip -o Excel.zip - name: Tag release id: tag_release