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 c839028 commit 60f115bCopy full SHA for 60f115b
.github/workflows/appcast.yml
@@ -0,0 +1,30 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: Appcast
4
5
6
+on:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
12
+ build:
13
+ # The type of runner that the job will run on
14
+ runs-on: macos-latest
15
16
17
+ steps:
18
19
20
+ - name: Rebuild 🚀
21
+ uses: actions/github-script@v6
22
+ with:
23
+ github-token: ${{ secrets.PERSONAL_TOKEN }}
24
+ script: |
25
+ github.rest.repos.requestPagesBuild({
26
+ owner: context.repo.owner,
27
+ repo: context.repo.repo,
28
+ })
29
30
0 commit comments