We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11517b4 + 6a189a2 commit 322a3beCopy full SHA for 322a3be
1 file changed
.github/workflows/deploy.yaml
@@ -48,3 +48,20 @@ jobs:
48
- name: Deploy to GitHub Pages
49
id: deployment
50
uses: actions/deploy-pages@v4
51
+
52
+ deploy-spec:
53
+ runs-on: ubuntu-latest
54
+ needs: build
55
+ steps:
56
+ - uses: actions/checkout@v4
57
+ - name: setup git config
58
+ run: |
59
+ git config user.name "GitHub Actions Bot"
60
+ git config user.email "<>"
61
+ - name: Deploy assembled spec
62
63
+ git checkout -b assembled-spec
64
+ git add -f openrpc.json
65
+ git add -f refs-openrpc.json
66
+ git commit -m "assemble openrpc.json"
67
+ git push -fu origin assembled-spec
0 commit comments