Skip to content

Commit

Permalink
3 workflows set up for dmX
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliorivas committed May 13, 2024
1 parent c7ffdf5 commit e1eb919
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
name: Deploy dmX beta to GitHub Pages
name: Release version of dmX in GitHub Pages
on:
push:
branches: [beta]
branches: [release]

permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
- name: Checkout
uses: actions/checkout@v3

- name: Deploy 🚀
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .
clean-exclude: pr-preview/
target-folder: beta/
clean-exclude: |
pr-preview/
main/
target-folder: release/
5 changes: 3 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
- name: Checkout
uses: actions/checkout@v3

- name: Deploy 🚀
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .
clean-exclude: |
pr-preview/
beta/
target-folder: main/

0 comments on commit e1eb919

Please sign in to comment.