diff options
author | Mihai Fufezan <[email protected]> | 2022-06-18 01:26:46 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2022-06-21 22:28:20 +0300 |
commit | 593f24a2ecf86a2a4db3545a21ff4c75ee526f45 (patch) | |
tree | cb546488aa73246e7f7fad01118f425d0a11b69a /.github | |
parent | 8bd7234d7256d494794741f973f470458a1ad904 (diff) | |
download | Hyprland-593f24a2ecf86a2a4db3545a21ff4c75ee526f45.tar.gz Hyprland-593f24a2ecf86a2a4db3545a21ff4c75ee526f45.zip |
workflows: add meson version updater and update versions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/version-update.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/version-update.sh b/.github/workflows/version-update.sh new file mode 100644 index 00000000..1bf95af9 --- /dev/null +++ b/.github/workflows/version-update.sh @@ -0,0 +1,26 @@ +name: "Nix & Meson: update version" + +on: [push, workflow_dispatch] + +jobs: + update: + runs-on: ubuntu-latest + steps: + - name: Clone repository + uses: actions/checkout@v3 + - name: Update flake and meson version + run: | + REGEX="([0-9]+(\.[0-9a-zA-Z]+)+)" + + CRT_REV=$(git show-ref --tags --head --abbrev | head -n 1 | head -c 7) + TAG_REV=$(git show-ref --tags --abbrev | tail -n 1 | head -c 7) + CRT_VER=$(sed -nEe "/$REGEX/{p;q;}" meson.build | awk -F\' '{print $2}') + VERSION=$(git show-ref --tags --abbrev | tail -n 1 | tail -c +20) + + if [[ $TAG_REV = $CRT_REV ]] || [[ $CRT_VER != $VERSION ]]; then + sed -Ei "s/$REGEX/$VERSION/g" meson.build + sed -Ei "s/$REGEX/$VERSION/g" flake.nix + fi + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "[gha] bump flake and meson version" |