-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Matts966/alphasql
Remove bin/ prefixes because binaries generated automatically and remotely
- Loading branch information
Showing
3 changed files
with
9 additions
and
15 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
mkdir alphasql_darwin_amd64 | ||
mv ./bazel-bin/alphasql/dag ./alphasql_darwin_amd64/dag | ||
mv ./bazel-bin/alphasql/pipeline_type_checker ./alphasql_darwin_amd64/pipeline_type_checker | ||
tar -zcvf bin/alphasql_darwin_amd64.tar.gz alphasql_darwin_amd64 | ||
tar -zcvf alphasql_darwin_amd64.tar.gz alphasql_darwin_amd64 | ||
- name: Get Release | ||
id: get | ||
uses: bruceadams/[email protected] | ||
|
@@ -37,7 +37,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.get.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | ||
asset_path: ./bin/alphasql_darwin_amd64.tar.gz | ||
asset_path: alphasql_darwin_amd64.tar.gz | ||
asset_name: alphasql_darwin_amd64.tar.gz | ||
asset_content_type: application/tar+gzip | ||
|
||
|
@@ -72,7 +72,7 @@ jobs: | |
mkdir alphasql_linux_x86_64 | ||
mv ./bazel-bin/alphasql/dag ./alphasql_linux_x86_64/dag | ||
mv ./bazel-bin/alphasql/pipeline_type_checker ./alphasql_linux_x86_64/pipeline_type_checker | ||
tar -zcvf bin/alphasql_linux_x86_64.tar.gz alphasql_linux_x86_64 | ||
tar -zcvf alphasql_linux_x86_64.tar.gz alphasql_linux_x86_64 | ||
- name: Get Release | ||
id: get | ||
uses: bruceadams/[email protected] | ||
|
@@ -83,7 +83,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.get.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | ||
asset_path: ./bin/alphasql_linux_x86_64.tar.gz | ||
asset_path: alphasql_linux_x86_64.tar.gz | ||
asset_name: alphasql_linux_x86_64.tar.gz | ||
asset_content_type: application/tar+gzip | ||
|
||
|
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
This file was deleted.
Oops, something went wrong.