Skip to content

Commit

Permalink
💚 Adds download artifact stage
Browse files Browse the repository at this point in the history
  • Loading branch information
daschaa committed Jan 29, 2022
1 parent cf9e165 commit 4e6e917
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,20 @@ jobs:
pod install
xcodebuild -workspace billboard.xcworkspace -scheme billboard-macOS ARCHS='x86_64' ONLY_ACTIVE_ARCH=NO DSTROOT="release" archive
cd ..
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: Billboard.app
path: ./macos/release/Applications/billboard.app
- uses: actions/download-artifact@v2
with:
name: Billboard.app
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
**/billboard.app
**/Billboard.app
tag_name: ${{ steps.set_release_name.outputs.current-version }}
name: Release ${{ steps.set_release_name.outputs.current-version }}
draft: false
prerelease: false
# - name: Upload Artifact
# uses: actions/upload-artifact@v2
# with:
# name: Billboard.app
# path: ./macos/release/Applications/billboard.app
prerelease: false

0 comments on commit 4e6e917

Please sign in to comment.