From 47588109df7f2b594764fc93c3fe6bdd3555c3f9 Mon Sep 17 00:00:00 2001 From: inv2004 Date: Sun, 24 Jan 2021 22:36:43 +0300 Subject: [PATCH] actions: init build --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..d285dcd8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Patch + +on: push # to debug +# on: +# push: +# tags: +# - '*.*.*' + +jobs: + patch: + runs-on: windows-latest + timeout-minutes: 5 + steps: + - uses: actions/checkout@v2 + - name: Build 5.x + env: + BUILD_DIR = "Sophia-ps5-${{ github.ref }}" + run: + mkdir $BUILD_DIR + cp -R Sophia/* $BUILD_DIR + del -Force -Recurse "$BUILD_DIR/PowerShell 7.x" + gci -Recurse +