Skip to content

Commit

Permalink
Add workflow for gh-pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
smiasojed committed Oct 2, 2024
1 parent 7a2ad6c commit 5f702d8
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/publish-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: remix-publish-gh-pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.0.0
- run: yarn install
- run: ls
- run: pwd
- run: yarn
- run: yarn build:libs
- run: yarn run build:production
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/apps/remix-ide/

0 comments on commit 5f702d8

Please sign in to comment.