Skip to content

chore(deps): bump crate-ci/typos from 1.24.1 to 1.24.4 (#53) #211

chore(deps): bump crate-ci/typos from 1.24.1 to 1.24.4 (#53)

chore(deps): bump crate-ci/typos from 1.24.1 to 1.24.4 (#53) #211

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build Binary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install Deps
run: sudo apt install -y libxkbcommon-dev libpango1.0-dev
- name: Run fmt check
run: cargo fmt --all -- --check
- name: Run clippy check
run: cargo clippy
- name: Run tests
run: cargo test --verbose
release:
permissions:
contents: write
if: startsWith(github.ref, 'refs/tags/v')
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install Deps
run: sudo apt install -y libxkbcommon-dev libpango1.0-dev libwayland-dev
- name: Publish to crate
run: |
cargo publish -p waycrate_xkbkeycode --token ${{ secrets.CRATES_TOKEN }}
cargo publish -p layershellev --token ${{ secrets.CRATES_TOKEN }}
cargo publish -p sessionlockev --token ${{ secrets.CRATES_TOKEN }}
cargo publish -p iced_layershell --token ${{ secrets.CRATES_TOKEN }}
cargo publish -p iced_sessionlock --token ${{ secrets.CRATES_TOKEN }}
- uses: softprops/action-gh-release@v2
with:
draft: true