feat: supports importing hosts from PuTTY #303
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux x86-64 | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# download jdk | |
- run: wget -q -O $RUNNER_TEMP/java_package.tar.gz https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.6-linux-x64-b825.69.tar.gz | |
# appimagetool | |
- run: sudo apt install libfuse2 | |
# install jdk | |
- name: Installing Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'jdkfile' | |
jdkFile: ${{ runner.temp }}/java_package.tar.gz | |
java-version: '21.0.6' | |
architecture: x64 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-${{ runner.arch }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-${{ runner.arch }}-gradle- | |
# dist | |
- run: | | |
./gradlew dist --no-daemon | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: termora-linux-x86-64 | |
path: | | |
build/distributions/*.tar.gz | |
build/distributions/*.AppImage |