-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|