Skip to content

Commit

Permalink
Add CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
keton committed Feb 23, 2024
1 parent b151775 commit 44d6c6e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CMake on a single platform

on: [push]

#on:
# push:
# branches: ["master"]
# pull_request:
# branches: ["master"]

permissions:
contents: write

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
# UESDK uses ssh in submodule, rewrite to https with access token
- name: Set github url and credentials
run: |
git config --global url."https://${{ secrets.GITHUB_TOKEN }}@github.com/.insteadOf" [email protected]:
- name: test
run: git clone --recursive --depth 1 https://github.com/praydog/UEVR.git

0 comments on commit 44d6c6e

Please sign in to comment.