We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8510d0 commit 9fa8ee5Copy full SHA for 9fa8ee5
.github/workflows/build-gems.yml
@@ -63,3 +63,17 @@ jobs:
63
64
- run: gem push "${{ steps.cross-gem.outputs.gem-path }}"
65
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
77
+ ruby-version: "3.4"
78
+ - run: gem build
79
+ - run: gem push ruby_wasm-*.gem
0 commit comments