Skip to content

Commit

Permalink
Merge branch 'master' of github.com:UltimateHackingKeyboard/agent
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Jan 23, 2024
2 parents 14149d2 + b204be9 commit 4050d01
Show file tree
Hide file tree
Showing 23 changed files with 193 additions and 1,050 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,38 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASS }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: List dist folder on Linux and Mac
if: runner.os == 'macOS' || runner.os == 'Linux'
run: ls -la dist

- name: Upload Mac installer artifact
if: runner.os == 'macOS'
uses: actions/upload-artifact@v4
with:
name: UHK.Agent-mac-installer
path: dist/UHK.Agent-*-mac.dmg
compression-level: 0
retention-days: 5

- name: Upload Linux AppImage artifact
if: runner.os == 'Linux'
uses: actions/upload-artifact@v4
with:
name: UHK.Agent-linux-x86_64.AppImage
path: dist/UHK.Agent-*-linux-x86_64.AppImage
compression-level: 0
retention-days: 5

- name: List dist folder on Windows
if: runner.os == 'Windows'
run: dir dist

- name: Upload Windows installer artifacts
if: runner.os == 'Windows'
uses: actions/upload-artifact@v4
with:
name: UHK.Agent-windows-installers
path: dist/UHK.Agent-*-win*.exe
compression-level: 0
retention-days: 5
Loading

0 comments on commit 4050d01

Please sign in to comment.