Skip to content

Commit 9fa8ee5

Browse files
ci: push source gem as well
1 parent e8510d0 commit 9fa8ee5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build-gems.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,17 @@ jobs:
6363

6464
- run: gem push "${{ steps.cross-gem.outputs.gem-path }}"
6565
if: ${{ inputs.publish }}
66+
67+
push-src-gem:
68+
name: Push source gem
69+
runs-on: ubuntu-latest
70+
if: ${{ inputs.publish }}
71+
steps:
72+
- uses: actions/checkout@v6
73+
with:
74+
ref: ${{ inputs.ref || github.ref }}
75+
- uses: ruby/setup-ruby@v1
76+
with:
77+
ruby-version: "3.4"
78+
- run: gem build
79+
- run: gem push ruby_wasm-*.gem

0 commit comments

Comments
 (0)