Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Initial Release! 🎉🚀
  • Loading branch information
StephenHodgson authored Aug 8, 2024
1 parent 5edb49c commit 5ef5f02
Show file tree
Hide file tree
Showing 12 changed files with 33,850 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @buildalon/buildalon
28 changes: 28 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: validate
on:
schedule:
- cron: '0 0 * * 0' # every Sunday at midnight
push:
branches:
- 'main'
pull_request:
branches:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.ref }}

jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest ]
steps:
- name: checkout self
uses: actions/checkout@v4
- name: buildalon/setup-ovr-platform-util
uses: ./
- run: 'ovr-platform-util version'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
# setup-ovr-platform-util
A GitHub Action to setup the ovr-platform-util tool command alias.
# Buildalon Setup ovr-platform-util

[![Discord](https://img.shields.io/discord/939721153688264824.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/VM9cWJ9rjH) [![validate](https://github.com/buildalon/setup-ovr-platform-util/actions/workflows/validate.yml/badge.svg?branch=main&event=push)](https://github.com/buildalon/setup-ovr-platform-util/actions/workflows/validate.yml)

A GitHub Action to setup the [ovr-platform-util](https://developer.oculus.com/resources/publish-reference-platform-command-line-utility) tool command alias.

## How to use

```yaml
jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, windows-latest, macos, windows ]
steps:
# download and setup ovr platform util
- uses: buildalon/setup-ovr-platform-util@v1
# run commands
- run: 'ovr-platform-util version'
```
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Buildalon Setup ovr-platform-util
description: 'A GitHub Action to setup the ovr-platform-util tool command alias.'
branding:
icon: 'terminal'
color: 'red'
runs:
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit 5ef5f02

Please sign in to comment.