From 4ab2af527fa5ca1d809479b3eb3451f4cefd76c2 Mon Sep 17 00:00:00 2001 From: Nikita Agafonov Date: Tue, 29 Aug 2023 14:01:13 +0100 Subject: [PATCH] Testing workflows --- .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..bbeac5e9 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +name: "Build Branch" +on: workflow_dispatch + +jobs: + build_all: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + with: + path: app + + - uses: actions/setup-node@master + with: + node-version: 19 + + - name: Install Node dependencies + run: | + cd app + npm install + + - name: Build + env: + CODESIGN_PASSWORD: ${{ secrets.OST_CERT_PWORD }} + CODESIGN_FILE: "codesign-certificate.pfx" + CODESIGN_B64: ${{ secrets.OST_CERT_B64 }} + run: | + cd app + npm run build:js + ls out