Skip to content

Commit

Permalink
Merge pull request #14 from tonkeeper/feature/artificats
Browse files Browse the repository at this point in the history
Upload only Installations to artifacts
  • Loading branch information
KuznetsovNikita authored Jan 10, 2024
2 parents 5baa163 + 2327661 commit 3f37991
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,49 @@ jobs:

- name: Upload distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
with:
name: Tonkeeper Desktop ${{ runner.os }}
retention-days: 10
path: |
${{ github.workspace }}/apps/desktop/out/make
- name: Upload distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: Tonkeeper Desktop ${{ runner.os }} arm64
retention-days: 10
path: |
${{ github.workspace }}/apps/desktop/out/make/squirrel.windows/arm64
- name: Upload distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: Tonkeeper Desktop ${{ runner.os }} x64
retention-days: 10
path: |
${{ github.workspace }}/apps/desktop/out/make/squirrel.windows/x64
- name: Upload distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Linux'
with:
name: Tonkeeper Desktop ${{ runner.os }} x64
retention-days: 10
path: |
${{ github.workspace }}/apps/desktop/out/make/deb/x64
- name: Upload distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Linux'
with:
name: Tonkeeper Desktop ${{ runner.os }} arm64
retention-days: 10
path: |
${{ github.workspace }}/apps/desktop/out/make/deb/arm64
- name: Clean-up credentials
if: always() && runner.os == 'macOS'
run: |
Expand Down

0 comments on commit 3f37991

Please sign in to comment.