1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 10:40:54 +00:00

Merge pull request #578 from psychopy/gh_actions_experiments

Gh actions experiments
This commit is contained in:
Nikita Agafonov 2023-08-29 14:16:01 +01:00 committed by GitHub
commit ee2a20be4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,28 +2,22 @@ name: "Build Branch"
on: workflow_dispatch on: workflow_dispatch
jobs: jobs:
build_all: build_all:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
with: with:
path: app path: app
- uses: actions/setup-node@master
- uses: actions/setup-node@master with:
with: node-version: 19
node-version: 19 - name: Install Node dependencies
- name: Install Node dependencies
run: | run: |
cd app cd app
npm install npm install
- name: Build - name: Build
env:
CODESIGN_PASSWORD: ${{ secrets.OST_CERT_PWORD }}
CODESIGN_FILE: "codesign-certificate.pfx"
CODESIGN_B64: ${{ secrets.OST_CERT_B64 }}
run: | run: |
cd app cd app
npm run build:js npm run build:js
ls out ls out