Skip to content

Commit

Permalink
fix yml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
steam0r committed Mar 4, 2024
1 parent f9cdc5a commit f60c86d
Showing 1 changed file with 58 additions and 58 deletions.
116 changes: 58 additions & 58 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f60c86d

Please sign in to comment.