From f60c86da373fdcdb20a1652a3df770cee262971e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Maih=C3=B6fer?= Date: Mon, 4 Mar 2024 13:36:13 +0100 Subject: [PATCH] fix yml syntax --- .github/workflows/nightly.yml | 116 +++++++++++++++++----------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b970546..42e42ac 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -69,64 +69,64 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_CONFIG_VERSION: ${{ env.releaseName }} build_win: - runs-on:windows-latest - steps: - - name: checkout cables_dev - uses: actions/checkout@v4 - with: - repository: "undev-studio/cables_dev" - ref: "develop" - token: ${{ SECRETS.STANDALONE_TOKEN }} - - name: checkout cables - uses: actions/checkout@v4 - with: - repository: "pandrr/cables" - ref: "develop" - token: ${{ SECRETS.STANDALONE_TOKEN }} - path: "cables/" - - name: checkout extensions - uses: actions/checkout@v4 - with: - repository: "undev-studio/cables_extensionops" - ref: "main" - token: ${{ SECRETS.STANDALONE_TOKEN }} - path: "cables/src/ops/extensions" - - name: checkout cables ui - uses: actions/checkout@v4 - with: - repository: "undev-studio/cables_ui" - ref: "develop" - token: ${{ SECRETS.STANDALONE_TOKEN }} - path: "cables_ui/" - - name: checkout cables standalone - uses: actions/checkout@v4 - with: - path: "cables_electron/" - - name: install python - uses: actions/setup-python@v5 - - name: Read .nvmrc - id: nvm - run: echo "NVMRC=`cat .nvmrc`" >> $GITHUB_OUTPUT - - name: install nodejs - uses: dcodeIO/setup-node-nvm@master - with: - node-version: "${{ steps.nvm.outputs.NVMRC }}" - - name: Configure electron cache - uses: actions/cache@v3 - with: - key: electron-builder - path: ~/Library/Caches/electron-builder - - name: Configure nvm caches - uses: actions/cache@v3 - with: - key: nvm - path: ~/mynvm/versions - - name: build standalone - run: ./hook_standalone.sh win - env: - SETUP_NODE_NVM_NVM: "/Users/runner/mynvm/nvm.sh" - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_CONFIG_VERSION: ${{ env.releaseName }} + runs-on: windows-latest + steps: + - name: checkout cables_dev + uses: actions/checkout@v4 + with: + repository: "undev-studio/cables_dev" + ref: "develop" + token: ${{ SECRETS.STANDALONE_TOKEN }} + - name: checkout cables + uses: actions/checkout@v4 + with: + repository: "pandrr/cables" + ref: "develop" + token: ${{ SECRETS.STANDALONE_TOKEN }} + path: "cables/" + - name: checkout extensions + uses: actions/checkout@v4 + with: + repository: "undev-studio/cables_extensionops" + ref: "main" + token: ${{ SECRETS.STANDALONE_TOKEN }} + path: "cables/src/ops/extensions" + - name: checkout cables ui + uses: actions/checkout@v4 + with: + repository: "undev-studio/cables_ui" + ref: "develop" + token: ${{ SECRETS.STANDALONE_TOKEN }} + path: "cables_ui/" + - name: checkout cables standalone + uses: actions/checkout@v4 + with: + path: "cables_electron/" + - name: install python + uses: actions/setup-python@v5 + - name: Read .nvmrc + id: nvm + run: echo "NVMRC=`cat .nvmrc`" >> $GITHUB_OUTPUT + - name: install nodejs + uses: dcodeIO/setup-node-nvm@master + with: + node-version: "${{ steps.nvm.outputs.NVMRC }}" + - name: Configure electron cache + uses: actions/cache@v3 + with: + key: electron-builder + path: ~/Library/Caches/electron-builder + - name: Configure nvm caches + uses: actions/cache@v3 + with: + key: nvm + path: ~/mynvm/versions + - name: build standalone + run: ./hook_standalone.sh win + env: + SETUP_NODE_NVM_NVM: "/Users/runner/mynvm/nvm.sh" + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_CONFIG_VERSION: ${{ env.releaseName }} build_mac: runs-on: macos-14 steps: