diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 16:49:41 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 16:49:41 -0500 |
commit | a989ea718341075f841752d8cd65c0f0eabd9c6a (patch) | |
tree | 7017c102ad7df28dd5f3ce9f6d4bd7b5fbfa2e1d /.github/workflows | |
parent | only run in working directory :) (diff) | |
download | locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar.gz locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar.bz2 locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar.lz locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar.xz locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.tar.zst locusts-a989ea718341075f841752d8cd65c0f0eabd9c6a.zip |
Update changesets.yml and version-bump script
- Update changesets.yml to install additional software packages
- Modify version-bump script to pull the GIT_TAG from changeset if not set
- Bump version in multiple files and remove snapshot from gradle.properties
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/changesets.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index f39d7f0..643c5aa 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -19,8 +19,8 @@ jobs: key: ${{ runner.os }}-turbo-${{ github.sha }} restore-keys: | ${{ runner.os }}-turbo- - - name: Install ripgrep - run: sudo apt-get -y install ripgrep + - name: Install needed softwares + run: sudo apt-get -y install ripgrep moreutils - name: Install pnpm and dependencies uses: pnpm/action-setup@v4 with: |