Skip to content

Commit

Permalink
Merge pull request #62 from tillvit/development
Browse files Browse the repository at this point in the history
Remove beta branch
  • Loading branch information
tillvit authored Oct 13, 2023
2 parents 277a6ee + 0d30e01 commit 2282a97
Showing 1 changed file with 3 additions and 19 deletions.
22 changes: 3 additions & 19 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Bundle js
on:
workflow_dispatch:
push:
branches: ["master", "development"]
branches: ["master"]

jobs:
build:
Expand All @@ -15,32 +15,16 @@ jobs:
with:
ref: master

- name: Checkout dev branch
uses: actions/checkout@v3
with:
ref: development
path: development

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"

- name: Build development
run: |
cd development
npm install
npm run build
- name: Build master
- name: Build
run: |
npm install
npm run build
- name: Move development
run: |
mv development/dist dist/beta
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand Down

0 comments on commit 2282a97

Please sign in to comment.