Skip to content

Commit

Permalink
Merge pull request #47 from raz0red/banksets_cycleS
Browse files Browse the repository at this point in the history
Banksets cycle s
  • Loading branch information
raz0red authored Jul 31, 2023
2 parents a8592aa + 801349d commit 0ddeba7
Show file tree
Hide file tree
Showing 65 changed files with 1,959 additions and 842 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.node-version }}

- name: Peform build
run: |
npm install
npm run build
- name: Upload dist
uses: actions/upload-artifact@v1
with:
Expand All @@ -47,7 +47,7 @@ jobs:
BASE_BRANCH: master
BRANCH: gh-pages
FOLDER: site/deploy
CLEAN_EXCLUDE: '["staging", "mobile", "cycles", "bios"]'
CLEAN_EXCLUDE: '["staging", "mobile", "cycles", "bios", "banksets", "banksets_cycleS"]'

- name: Deploy to GitHub pages (staging)
uses: JamesIves/github-pages-deploy-action@releases/v3
Expand All @@ -69,6 +69,26 @@ jobs:
FOLDER: site/deploy
TARGET_FOLDER: cycles

- name: Deploy to GitHub pages (banksets)
uses: JamesIves/github-pages-deploy-action@releases/v3
if: github.event_name == 'push' && github.ref == 'refs/heads/banksets'
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BASE_BRANCH: banksets
BRANCH: gh-pages
FOLDER: site/deploy
TARGET_FOLDER: banksets

- name: Deploy to GitHub pages (banksets + cycles)
uses: JamesIves/github-pages-deploy-action@releases/v3
if: github.event_name == 'push' && github.ref == 'refs/heads/banksets_cycleS'
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BASE_BRANCH: banksets_cycleS
BRANCH: gh-pages
FOLDER: site/deploy
TARGET_FOLDER: banksets_cycles

- name: Deploy to GitHub pages (bios)
uses: JamesIves/github-pages-deploy-action@releases/v3
if: github.event_name == 'push' && github.ref == 'refs/heads/bios'
Expand Down
Loading

0 comments on commit 0ddeba7

Please sign in to comment.