diff options
| author | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-27 22:24:16 +0300 |
|---|---|---|
| committer | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-27 22:24:16 +0300 |
| commit | 60ea18c609e81bb163cf8e84518c7f9bec903460 (patch) | |
| tree | ed5439ee239f2ffe58cfbf7d17b6373e24ef6db0 /.github | |
| parent | d743357624c3d5918da3376aa09a7325fd2d19f2 (diff) | |
Fix upload artifacts
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-on-release.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build-on-release.yml b/.github/workflows/build-on-release.yml index f8d45b7..e28923a 100644 --- a/.github/workflows/build-on-release.yml +++ b/.github/workflows/build-on-release.yml @@ -88,6 +88,12 @@ jobs: asset_name: krr-${{ matrix.os }}-${{ github.ref_name }}.zip asset_content_type: application/octet-stream + - name: Upload build as artifact + uses: actions/upload-artifact@v2 + with: + name: krr-${{ matrix.os }}-${{ github.ref_name }} + path: ./krr-${{ matrix.os }}-${{ github.ref_name }}.zip + - name: Clean up keychain and provisioning profile if: (matrix.os == 'macos-latest') && always() run: | |
