mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
21 lines
589 B
YAML
21 lines
589 B
YAML
name: CI - Validation
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
name: Validate
|
|
runs-on: x86_64_mojave
|
|
if: github.repository_owner == 'dortania'
|
|
env:
|
|
branch: ${{ github.ref }}
|
|
commiturl: ${{ github.event.head_commit.url }}${{ github.event.release.html_url }}
|
|
commitdate: ${{ github.event.head_commit.timestamp }}${{ github.event.release.published_at }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: /Library/Frameworks/Python.framework/Versions/3.10/bin/python3 OpenCore-Patcher-GUI.command --validate
|