-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.18 KB
/
build.yml
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
33
34
35
36
37
38
39
40
41
42
on:
push:
tags:
- 'v*'
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
_**Mudanças nesta Versão**_
- Primeira Mudança:
- _Atualizado `OpenCore` para `0.9.6`._
- Segunda Mudança:
- _Adicionado em config.plist -> `NVRAM` -> `Add` -> `7C436110-AB2A-4BBB-A880-FE41995C9F82` -> `boot-args` -> `revpatch=sbvmm`._
- _Adicionado em config.plist -> `Booter` -> `Quirks` -> `FixupAppleEfiImages`._
- Terceira Mudança:
- _Adicionada a `kext`:_
- _`RestrictEvents`_
- Quarta mudança:
- _Atualizada a `kext`:_
- _`AppleALC.kext`_
draft: false
prerelease: false