KDE UTILS SUITE (JuNest) Appimage #22
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: KDE UTILS SUITE (JuNest) Appimage | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| schedule: | |
| - cron: "0 14 21 * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: build | |
| if: always() | |
| run: | | |
| sudo apt update && sudo apt install desktop-file-utils | |
| sudo sysctl -w kernel.apparmor_restrict_unprivileged_unconfined=0 | |
| sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 | |
| chmod a+x ./kde-utilities-meta-junest.sh | |
| ./kde-utilities-meta-junest.sh | |
| mkdir dist | |
| mv *AppImage* dist/ | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4.4.0 | |
| with: | |
| name: KDE-utils-suite-x86_64.AppImage | |
| path: 'dist' | |
| release: | |
| needs: [build] | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v4.1.8 | |
| with: | |
| name: KDE-utils-suite-x86_64.AppImage | |
| - name: release | |
| uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| title: Continuous build (JuNest) | |
| automatic_release_tag: continuous | |
| prerelease: false | |
| draft: false | |
| files: | | |
| *.AppImage* | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} |