[READ-ONLY] Mirror of https://github.com/probablykasper/remind-me-again. Toggleable cron reminders app for Mac, Linux and Windows
linux macos notifications reminder tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Update CI

Kasper (Dec 5, 2022, 1:28 AM +0100) 20bde3d7 b44d478f

+8 -12
+4 -6
.github/workflows/release.yml
··· 14 14 runs-on: ${{ matrix.platform }} 15 15 steps: 16 16 - name: Checkout repository 17 - uses: actions/checkout@v2 17 + uses: actions/checkout@v3 18 18 19 19 - name: Node.js setup 20 - uses: actions/setup-node@v1 20 + uses: actions/setup-node@v3 21 21 with: 22 22 node-version: 16 23 23 24 24 - name: Rust setup 25 - uses: actions-rs/toolchain@v1 26 - with: 27 - toolchain: stable 25 + uses: dtolnay/rust-toolchain@stable 28 26 29 27 - name: Install dependencies (ubuntu only) 30 28 if: matrix.platform == 'ubuntu-latest' 31 29 run: | 32 30 sudo apt-get update 33 - sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf 31 + sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf 34 32 35 33 - run: npm install 36 34
+4 -6
.github/workflows/test.yml
··· 15 15 runs-on: ${{ matrix.platform }} 16 16 steps: 17 17 - name: Checkout repository 18 - uses: actions/checkout@v2 18 + uses: actions/checkout@v3 19 19 20 20 - name: Node.js setup 21 - uses: actions/setup-node@v1 21 + uses: actions/setup-node@v3 22 22 with: 23 23 node-version: 16 24 24 25 25 - name: Rust setup 26 - uses: actions-rs/toolchain@v1 27 - with: 28 - toolchain: stable 26 + uses: dtolnay/rust-toolchain@stable 29 27 30 28 - name: Rust Cache 31 29 uses: Swatinem/rust-cache@v1 ··· 36 34 if: matrix.platform == 'ubuntu-latest' 37 35 run: | 38 36 sudo apt-get update 39 - sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf 37 + sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf 40 38 41 39 - run: npm install 42 40