Update version to 1.3.1 and adjust related resources #1
This file contains hidden or 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: Build AppImage (Linux) | |
| on: | |
| push: | |
| branches: [ master ] | |
| tags: [ 'v*', '*.*.*' ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| appimage: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install AppImage Builder | |
| run: | | |
| sudo add-apt-repository -y ppa:appimagebuilder-team/stable | |
| sudo apt-get update | |
| sudo apt-get install -y appimage-builder | |
| - name: Build AppImage | |
| run: | | |
| appimage-builder --recipe AppImageBuilder.yml --skip-test | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: SSH-Studio-AppImage | |
| path: '*.AppImage' | |
| - name: Publish Release Asset | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| *.AppImage | |
| *.zsync | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |