trigger-build #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Edrys-Lite Test Website | |
on: | |
repository_dispatch: | |
types: [trigger-build] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download edrys-Lite test branch | |
run: git clone --branch test https://github.com/edrys-labs/edrys-Lite.git | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Building edrys-Lite | |
env: | |
TRYSTERO_PEER_CONFIG: ${{ secrets.TRYSTERO_PEER_CONFIG }} | |
run: | | |
cd edrys-Lite | |
npm install | |
npm run build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./edrys-Lite/dist | |
destination_dir: docs | |
publish_branch: gh-pages |