Skip to content

Commit d71511c

Browse files
committed
Starting on new site
1 parent 9a00cc9 commit d71511c

File tree

759 files changed

+16769
-19699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

759 files changed

+16769
-19699
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: 'Update Curseforge Releases'
3+
4+
on:
5+
repository_dispatch:
6+
types:
7+
- update-curseforge-releases
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '30 6,18 * * *'
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
update_github_releases:
17+
name: Update Curseforge Release Index
18+
runs-on: ubuntu-latest
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
concurrency:
22+
group: update-releases
23+
cancel-in-progress: false
24+
steps:
25+
- uses: actions/checkout@v3
26+
- run: npm ci
27+
- run: npm run index-curseforge-releases
28+
- uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a
29+
with:
30+
commit_message: Updated Curseforge Release-Index
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: 'Update Github Releases'
3+
4+
on:
5+
repository_dispatch:
6+
types:
7+
- update-github-releases
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '30 4,16 * * *'
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
update_github_releases:
17+
name: Update Github Release Index
18+
runs-on: ubuntu-latest
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
concurrency:
22+
group: update-releases
23+
cancel-in-progress: false
24+
steps:
25+
- uses: actions/checkout@v3
26+
- run: npm ci
27+
- run: npm run index-github-releases
28+
- uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a
29+
with:
30+
commit_message: Updated Github Release-Index
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: 'Update Modrinth Releases'
3+
4+
on:
5+
repository_dispatch:
6+
types:
7+
- update-modrinth-releases
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '30 5,17 * * *'
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
update_github_releases:
17+
name: Update Modrinth Release Index
18+
runs-on: ubuntu-latest
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
concurrency:
22+
group: update-releases
23+
cancel-in-progress: false
24+
steps:
25+
- uses: actions/checkout@v3
26+
- run: npm ci
27+
- run: npm run index-modrinth-releases
28+
- uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a
29+
with:
30+
commit_message: Updated Modrinth Release-Index
31+

0 commit comments

Comments
 (0)