Compare commits
2 commits
34062224eb
...
2153f7b52b
| Author | SHA1 | Date | |
|---|---|---|---|
| 2153f7b52b | |||
| 5cc6e1d168 |
2 changed files with 21 additions and 1 deletions
|
|
@ -91,3 +91,16 @@ jobs:
|
||||||
|
|
||||||
- name: Build (release)
|
- name: Build (release)
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
||||||
|
notify:
|
||||||
|
name: Notify
|
||||||
|
needs: [lint, build-debug, build-release]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: always()
|
||||||
|
steps:
|
||||||
|
- uses: https://git.lerch.org/lobo/action-notify-ntfy@v2
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.NTFY_HOST }}
|
||||||
|
topic: ${{ secrets.NTFY_TOPIC }}
|
||||||
|
user: ${{ secrets.NTFY_USER }}
|
||||||
|
password: ${{ secrets.NTFY_PASSWORD }}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,14 @@ A weather applet for the [COSMIC](https://github.com/pop-os/cosmic-epoch) deskto
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
Requires a Rust toolchain. Install via [rustup](https://rustup.rs/) if needed.
|
Requires a Rust toolchain and the following system dependencies:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Debian/Ubuntu
|
||||||
|
sudo apt-get install pkg-config libxkbcommon-dev libwayland-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Install Rust via [rustup](https://rustup.rs/) if needed, then:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue