diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-30 15:03:44 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-30 15:03:44 -0500 |
commit | 2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18 (patch) | |
tree | fe06e7ac41115d1799cb2b3cc71127072f827d90 /.github/workflows | |
parent | feat: Ruby (#33) (diff) | |
download | locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar.gz locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar.bz2 locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar.lz locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar.xz locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.tar.zst locusts-2cfdf7d322f1a42fd43a2c82ce16279ae10e1e18.zip |
ruby: here goes nothing?
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ruby.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index cbe07e1..613eade 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -43,7 +43,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set version to pre-release - run: sed "s/$(jq -r .version package.json)/$(jq -r .version package.json).pre/" locusts.gemspec -i + run: | + sed "s/$(jq -r .version package.json)/$(jq -r .version package.json).pre/" locusts.gemspec -i + sed "s/$(jq -r .version package.json)/$(jq -r .version package.json).pre/" Gemfile.lock -i - name: Set up Ruby uses: ruby/setup-ruby@v1 with: |