forked from nerdgeschoss/shimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 996 Bytes
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Publish to NPM/RubyGems
on:
release:
types: [created]
jobs:
npm_module:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: https://registry.npmjs.org/
cache: yarn
- run: yarn
- run: yarn config set version-git-tag false
- run: yarn version --new-version $(echo $GITHUB_REF_NAME | cut -c 2-)
- run: yarn build
- run: yarn publish --non-interactive
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
gem:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- run: sed -i "s/0.0.1/$(echo $GITHUB_REF_NAME | cut -c 2-)/" lib/shimmer/version.rb
- name: Publish gem
uses: dawidd6/action-publish-gem@v1
with:
api_key: ${{secrets.RUBYGEMS_API_KEY}}