Skip to content

Zenjectify

Zenjectify #70

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_pr --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: pr build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
workflow:
name: PR Pipeline
if: github.event_name == 'push' ||
(github.event_name == 'pull_request' && contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run './build.cmd Compile'
id: NukeBuild
run: ./build.cmd Compile
env:
GH_PACKAGES_USER: ${{ github.repository_owner }}
GH_PACKAGES_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIRA_SERVER_CODE: ${{ secrets.SIRA_SERVER_CODE }}
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.NukeBuild.outputs.filename }}
path: ${{ steps.NukeBuild.outputs.artifactpath }}