miracle-wm/.github/workflows/snap_publish.yml
Matthew Kosarek dd89df3214
feature: supporting the i3 focus command (#116)
- 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
2024-05-02 10:14:16 -04:00

44 lines
883 B
YAML

name: Snap Publish
on:
push:
branches:
- master
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
strategy:
matrix:
platform:
- amd64
- armhf
- arm64
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: snapcore/action-build@v1
- name: Publish the snap
uses: snapcore/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }}
with:
snap: ${{ steps.build-snap.outputs.snap }}
release: edge