Skip to content

Commit 60f115b

Browse files
authored
Create appcast.yml
1 parent c839028 commit 60f115b

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/appcast.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)