release 1.28.6 #4
Workflow file for this run
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: Release Version | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| env: | |
| MATE_DESKTOP_VERSION: 1.28.2 | |
| CACHE_PATH: /tmp/.cache | |
| jobs: | |
| release: | |
| name: Release New Version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Repository checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: "true" | |
| - name: Install dependency packages | |
| run: sudo .github/workflows/ubuntu.sh | |
| - name: Install higher version Mate component packages | |
| run: sudo .github/workflows/mate-desktop.sh ${{env.MATE_DESKTOP_VERSION}} ${{ env.CACHE_PATH }} | |
| - name: Build the source code | |
| run: .github/workflows/builds.sh autotools | |
| - name: Create github release | |
| run: | | |
| gh release create ${{ github.ref_name }} --title ${{ github.ref_name }} --generate-notes atril*.tar.xz | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |