Skip to content

Commit

Permalink
Fix other curl
Browse files Browse the repository at this point in the history
  • Loading branch information
sboulema committed Oct 8, 2022
1 parent 6d0508f commit 2df10ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ jobs:
curl: -F files[][email protected] 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
Expand Down

0 comments on commit 2df10ee

Please sign in to comment.