Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
neil committed Oct 16, 2020
1 parent cfacf16 commit 8711262
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.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: ./sol-11_4-vbox.zip
asset_name: sol-11_4-vbox.zip
asset_path: ./sol-11_4-vbox.ova.zip
asset_name: sol-11_4-vbox.ova.zip
asset_content_type: application/zip
- name: Upload Release Asset
if: "contains(github.ref, 'refs/tags/')"
Expand All @@ -45,8 +45,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.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: ./sol-11_4-vbox.z01
asset_name: sol-11_4-vbox.z01
asset_path: ./sol-11_4-vbox.ova.z01
asset_name: sol-11_4-vbox.ova.z01
asset_content_type: application/zip


2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function run() {
await io.mv(img, "./" + imgName);

core.info("Split file");
await exec.exec("zip -s 2000m sol-11_4-vbox.zip  sol-11_4-vbox.ova");
await exec.exec("zip -0 -s 2000m sol-11_4-vbox.ova.zip sol-11_4-vbox.ova");
await exec.exec("ls -lah");

} catch (error) {
Expand Down

0 comments on commit 8711262

Please sign in to comment.