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 2c3fd88 commit 1e1049fCopy full SHA for 1e1049f
.github/workflows/ci.yml
@@ -61,3 +61,16 @@ jobs:
61
./arkscript --version
62
mkdir -p std && mv *.ark std/
63
./arkscript --lib ./ tests/all.ark
64
+
65
+ update-docs:
66
+ runs-on: ubuntu-24.04
67
+ name: "Update website documentation"
68
+ needs: [ build ]
69
70
+ steps:
71
+ - name: Create repository dispatch event
72
+ if: github.ref == 'refs/heads/master'
73
+ env:
74
+ GITHUB_TOKEN: ${{ secrets.READONLY_GITHUB_TOKEN }}
75
+ run: |
76
+ gh api repos/ArkScript-lang/website/dispatches --raw-field event_type=my_update_docs
0 commit comments