mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-30 02:09:10 +03:00
dd89df3214
- Added support for the i3 focus command: https://i3wm.org/docs/userguide.html#_focusing_moving_containers - Laid down a lot of the foundation of i3 commands in general, including parsing - CI now builds against the latest version of Mir's libraries - Snap builds are now disabled while we wait to update to core24
38 lines
934 B
YAML
38 lines
934 B
YAML
name: Snap
|
|
|
|
on:
|
|
merge_group:
|
|
types: [checks_requested]
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.number && format('pr{0}', github.event.number) || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Snap:
|
|
if: false
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # needed for version determination
|
|
|
|
- id: build-snap
|
|
name: Build the snap
|
|
uses: canonical/actions/build-snap@release
|
|
with:
|
|
snapcraft-channel: candidate
|
|
review-opts: "--allow-classic"
|
|
|
|
- name: Store the snap as artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ steps.build-snap.outputs.snap-name }}
|
|
path: ${{ steps.build-snap.outputs.snap-path }}
|