Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
fail-fast: false
matrix:
node: [14.x]
os: [macos-10.15, windows-2019, ubuntu-20.04]
os: [macos-10.15, windows-2019, ubuntu-18.04]
include:
- os: macos-10.15
friendlyName: macOS
- os: windows-2019
friendlyName: Windows
- os: ubuntu-20.04
- os: ubuntu-18.04
friendlyName: Ubuntu
timeout-minutes: 45
steps:
Expand Down Expand Up @@ -69,3 +69,21 @@ jobs:
- name: Run integration tests
timeout-minutes: 5
run: yarn test:integration
- name: Package application
run: yarn run package
if: ${{ matrix.os == 'ubuntu-18.04' }}
- name: Create Release
uses: softprops/action-gh-release@v1
if:
${{ matrix.os == 'ubuntu-18.04' && startsWith(github.ref,
'refs/tags/') }}
with:
files: |
dist/*.AppImage
dist/*.deb
dist/*.rpm
dist/*.txt
draft: true
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}