Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-fiscaletti committed Apr 18, 2024
1 parent c47ca06 commit 2ea1138
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/package_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ jobs:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# Rename artifacts
- name: Rename Artifact Executable
run: mv "dist/FrameCast Setup *.exe" "dist/FrameCast.Setup.win32.exe"
run: mv "dist/FrameCast Setup *.exe" "dist/FrameCast.Setup.windows_amd64.exe"
- name: Rename Artifact Executable Blockmap
run: mv "dist/FrameCast Setup *.exe.blockmap" "dist/FrameCast.Setup.win32.exe.blockmap"
run: mv "dist/FrameCast Setup *.exe.blockmap" "dist/FrameCast.Setup.windows_amd64.exe.blockmap"
# Upload the release artifact
- name: Upload Artifacts
uses: softprops/action-gh-release@v2
with:
files: |
dist/FrameCast.Setup.win32.exe
dist/FrameCast.Setup.win32.exe.blockmap
dist/FrameCast.Setup.windows_amd64.exe
dist/FrameCast.Setup.windows_amd64.exe.blockmap
build-and-deploy-mac:
runs-on: macos-latest
Expand All @@ -72,15 +72,17 @@ jobs:
# Build the project
- name: Package for MacOS
run: npm run electron:package:mac
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# Rename the release artifact
- name: Rename Artifact
run: mv dist/FrameCast-*.dmg dist/FrameCast.Setup.darwin.dmg
run: mv dist/FrameCast-*.dmg dist/FrameCast.Setup.darwin_arm64.dmg
- name: Rename Artifact Blockmap
run: mv dist/FrameCast-*.dmg.blockmap dist/FrameCast.Setup.darwin.dmg.blockmap
run: mv dist/FrameCast-*.dmg.blockmap dist/FrameCast.Setup.darwin_arm64.dmg.blockmap
# Upload the release artifact
- name: Upload Artifacts
uses: softprops/action-gh-release@v2
with:
files: |
dist/FrameCast.Setup.darwin.dmg
dist/FrameCast.Setup.darwin.dmg.blockmap
dist/FrameCast.Setup.darwin_arm64.dmg
dist/FrameCast.Setup.darwin_arm64.dmg.blockmap
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

FrameCast is a powerful tool that can enhance your video conferencing experience by providing flexible screen sharing options that enable effective collaboration.

[![Download for Windows](https://i.imgur.com/edpkPzv.png)](https://github.com/nathan-fiscaletti/framecast/releases/latest/download/FrameCast.Setup.win32.exe)
[![Download for Windows](https://i.imgur.com/edpkPzv.png)](https://github.com/nathan-fiscaletti/framecast/releases/latest/download/FrameCast.Setup.windows_amd64.exe)
[![Download for Linux](https://i.imgur.com/ob2QUPN.png)](https://github.com/nathan-fiscaletti/framecast/releases/latest/download/FrameCast.Setup.linux_amd64.deb)
[![Download for macOS](https://i.imgur.com/771afwr.png)](https://github.com/nathan-fiscaletti/framecast/releases/latest/download/FrameCast-darwin-arm64.dmg)
[![Download for macOS](https://i.imgur.com/771afwr.png)](https://github.com/nathan-fiscaletti/framecast/releases/latest/download/FrameCast.Setup.darwin_arm64.dmg)

## Video Preview

Expand Down

0 comments on commit 2ea1138

Please sign in to comment.