Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,29 @@ jobs:
env:
DATABASE_URL: postgres://ruby_au:ruby_au@127.0.0.1:5432/ruby_au_test
run: bundle exec rspec && bundle exec rspec sites

release:
name: Create Release
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
46 changes: 23 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ GEM
activesupport (>= 7.1)
device_detector (>= 1)
safely_block (>= 0.4)
annotaterb (4.20.0)
annotaterb (4.21.0)
activerecord (>= 6.0.0)
activesupport (>= 6.0.0)
ast (2.4.3)
base64 (0.3.0)
bcrypt (3.1.21)
bigdecimal (4.0.1)
bindex (0.8.1)
brakeman (7.1.2)
brakeman (8.0.2)
racc
bugsnag (6.29.0)
concurrent-ruby (~> 1.0)
Expand Down Expand Up @@ -187,7 +187,7 @@ GEM
csv (>= 3.0.0)
globalid (1.3.0)
activesupport (>= 6.1)
guard (2.20.0)
guard (2.20.1)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
logger (~> 1.6)
Expand All @@ -205,14 +205,14 @@ GEM
hashdiff (1.2.1)
hashie (5.1.0)
logger
herb (0.8.8-aarch64-linux-gnu)
herb (0.8.8-aarch64-linux-musl)
herb (0.8.8-arm-linux-gnu)
herb (0.8.8-arm-linux-musl)
herb (0.8.8-arm64-darwin)
herb (0.8.8-x86_64-darwin)
herb (0.8.8-x86_64-linux-gnu)
herb (0.8.8-x86_64-linux-musl)
herb (0.8.9-aarch64-linux-gnu)
herb (0.8.9-aarch64-linux-musl)
herb (0.8.9-arm-linux-gnu)
herb (0.8.9-arm-linux-musl)
herb (0.8.9-arm64-darwin)
herb (0.8.9-x86_64-darwin)
herb (0.8.9-x86_64-linux-gnu)
herb (0.8.9-x86_64-linux-musl)
htmlentities (4.4.2)
httparty (0.24.2)
csv
Expand Down Expand Up @@ -240,7 +240,7 @@ GEM
jbuilder (2.14.1)
actionview (>= 7.0.0)
activesupport (>= 7.0.0)
json (2.18.0)
json (2.18.1)
kaminari (1.2.2)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.2.2)
Expand Down Expand Up @@ -351,7 +351,7 @@ GEM
net-smtp
premailer (~> 1.7, >= 1.7.9)
prettyprint (0.2.0)
prism (1.8.0)
prism (1.9.0)
pry (0.16.0)
coderay (~> 1.1)
method_source (~> 1.0)
Expand Down Expand Up @@ -454,16 +454,16 @@ GEM
rspec-expectations (~> 3.13)
rspec-mocks (~> 3.13)
rspec-support (~> 3.13)
rspec-support (3.13.6)
rubocop (1.82.1)
rspec-support (3.13.7)
rubocop (1.84.1)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.48.0, < 2.0)
rubocop-ast (>= 1.49.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.49.0)
Expand Down Expand Up @@ -520,7 +520,7 @@ GEM
fugit (~> 1.11)
railties (>= 7.1)
thor (>= 1.3.1)
spring (4.4.0)
spring (4.4.2)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
spring-watcher-listen (2.1.0)
Expand All @@ -535,14 +535,14 @@ GEM
paint (~> 2.3)
unicode-display_width (~> 3.1)
thor (1.5.0)
thruster (0.1.17)
thruster (0.1.17-aarch64-linux)
thruster (0.1.17-arm64-darwin)
thruster (0.1.17-x86_64-darwin)
thruster (0.1.17-x86_64-linux)
thruster (0.1.18)
thruster (0.1.18-aarch64-linux)
thruster (0.1.18-arm64-darwin)
thruster (0.1.18-x86_64-darwin)
thruster (0.1.18-x86_64-linux)
timeout (0.6.0)
tsort (0.2.0)
turbo-rails (2.0.21)
turbo-rails (2.0.23)
actionpack (>= 7.1.0)
railties (>= 7.1.0)
tzinfo (2.0.6)
Expand Down