We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd4cc16 commit a077aabCopy full SHA for a077aab
.github/workflows/cd.yml
@@ -104,6 +104,16 @@ jobs:
104
ruby-version: 3.0
105
bundler-cache: true
106
107
+ - name: 🔑 Set up Signing Key
108
+ run: |
109
+ touch app/key.jks
110
+ echo "${KEYSTORE// /}" | base64 --decode > app/key.jks
111
+ touch keystore.properties
112
+ echo "${KEYSTORE_PROPERTIES// /}" | base64 --decode > keystore.properties
113
+ env:
114
+ KEYSTORE: ${{ secrets.KEYSTORE }}
115
+ KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }}
116
+
117
- name: 📝 Create GitHub Release
118
uses: softprops/action-gh-release@v2
119
if: startsWith(github.ref, 'refs/tags/')
0 commit comments