release MMapper 26.04.2 #539
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: build-snap | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-snap: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build Snap | |
| id: snapcraft | |
| uses: snapcore/action-build@v1 | |
| - name: Generate SHA256 checksum for Snap | |
| run: | | |
| BUILT_SNAP_PATH="${{ steps.snapcraft.outputs.snap }}" | |
| CANONICAL_SNAP_BASENAME=$(basename "${BUILT_SNAP_PATH}" .snap) | |
| mkdir -p artifact | |
| mv "${BUILT_SNAP_PATH}" artifact/ | |
| sha256sum artifact/"${CANONICAL_SNAP_BASENAME}".snap > artifact/"${CANONICAL_SNAP_BASENAME}".snap.sha256 | |
| - name: Get Linux package file base name | |
| id: get_linux_package_name | |
| run: | | |
| PACKAGE_FILE=$(ls artifact/*.snap) | |
| PACKAGE_BASENAME=$(basename "$PACKAGE_FILE" | sed 's/\./-/g') | |
| echo "PACKAGE_BASENAME=$PACKAGE_BASENAME" >> $GITHUB_OUTPUT | |
| - name: Upload Snap bundle | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ${{ steps.get_linux_package_name.outputs.PACKAGE_BASENAME }} | |
| path: artifact/*.snap* |