Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
Update skyline_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jam1garner committed May 19, 2021
1 parent b495d5b commit f225f6d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/skyline_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,16 @@ jobs:
- uses: actions/download-artifact@v2
with:
name: build-x86_64-unknown-linux-gnu.zip
path: build-x86_64-unknown-linux-gnu.zip
path: build-x86_64-unknown-linux-gnu
- uses: actions/download-artifact@v2
with:
name: build-x86_64-apple-darwin.zip
path: build-x86_64-apple-darwin.zip
path: build-x86_64-apple-darwin
- name: Listing
run: ls
run: |
ls -l
ls -lh build-x86_64-unknown-linux-gnu
ls -lh build-x86_64-apple-darwin
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -84,7 +87,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build-x86_64-unknown-linux-gnu.zip
asset_path: build-x86_64-unknown-linux-gnu/build-x86_64-unknown-linux-gnu.zip
asset_name: build-x86_64-unknown-linux-gnu.zip
asset_content_type: application/octet-stream
- name: Upload MacOS Build
Expand All @@ -94,6 +97,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build-x86_64-apple-darwin.zip
asset_path: build-x86_64-apple-darwin/build-x86_64-apple-darwin.zip
asset_name: build-x86_64-apple-darwin.zip
asset_content_type: application/octet-stream

0 comments on commit f225f6d

Please sign in to comment.