diff options
| author | Fuwn <[email protected]> | 2024-10-11 05:56:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-11 06:01:49 -0700 |
| commit | e4182d17bfe5437375b0fa7a3e1e2a5669311097 (patch) | |
| tree | 9586b869815aff09e2b429ad179fa76143995094 /README.md | |
| parent | 7d42732046acbe073449bcf8bd98fa3c1bbb0ebf (diff) | |
| download | yae-e4182d17bfe5437375b0fa7a3e1e2a5669311097.tar.xz yae-e4182d17bfe5437375b0fa7a3e1e2a5669311097.zip | |
feat(yae): tag predicate prefix trimming
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -40,9 +40,18 @@ yae add \ zen-browser-bin \ 'https://github.com/zen-browser/desktop/releases/download/{version}/zen.linux-specific.tar.bz2' +# Adds a Yae dependency named `yaak` pinned at tag `2024.10.1` with tag trimming for updates +yae add \ + --type git \ + --unpack=false \ + --version 2024.10.1 \ + --trim-tag-prefix v \ + yaak \ + 'https://github.com/yaakapp/app/releases/download/v{version}/yaak_{version}_amd64.AppImage.tar.gz' + # Updates all dependencies, e.g., updates the hash of `zen-browser-twilight-bin` # and bumps the version of `zen-browser-bin` to `1.0.1-a.8`, handling URI and -# hash recalculations +# hash recalculations, etc. yae update # Only updates `zen-browser-twilight-bin` |