Skip to content

Commit

Permalink
update changelog and add github actions to publish gem
Browse files Browse the repository at this point in the history
  • Loading branch information
SethHorsley committed Mar 3, 2024
1 parent 0e940d1 commit 4f53fb3
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Gem

on:
push:
branches:
- "*"
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Release Gem
if: contains(github.ref, 'refs/tags/v')
uses: cadwallion/publish-rubygems-action@master
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
RELEASE_COMMAND: rake release
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## [Unreleased]
## [0.1.2] - 2024-03-02
PUBLIC RELEASE

## [0.1.1] - 2024-03-03
### Changed
- Changed `clsx` to `CLSX`


## [0.1.0] - 2024-03-02

Expand Down
2 changes: 1 addition & 1 deletion lib/clsx/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module CLSX
VERSION = "0.1.1"
VERSION = "0.1.2"
end

0 comments on commit 4f53fb3

Please sign in to comment.