-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (32 loc) · 1.29 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: build
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # It's needed for git-restore-mtime
- name: Reset directories timestamp # Workaround for https://github.com/MestreLion/git-tools/issues/47
run: find . -not -path '*/.*' -type d -exec touch -t 197001010000 {} \;
- name: Restore files timestamp
uses: chetan/git-restore-mtime-action@v2 # Restore files original modification time to have deterministic zip bundles
- name: "Compile OCBundle"
working-directory: ./Sources/OCBundle
run: zip -qqrX ../../OCBundle.zip ./
- name: "Compile AIO"
working-directory: ./Sources/AIO
run: zip -qqrX ../../AIO.zip ./
- name: "Compile OC-Suite Wizard"
working-directory: ./Sources/OCBundle
run: zip -qqrX "../../OC-Suite Wizard.zip" "./switch/.packages/OC-Suite Wizard" ./switch/.overlays/ovlmenu.ovl
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Build: Compile Bundle"
file_pattern: "*.zip"