Skip to content

Merge pull request #56 from decentralized-identity/feature/help-modal… #24

Merge pull request #56 from decentralized-identity/feature/help-modal…

Merge pull request #56 from decentralized-identity/feature/help-modal… #24

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
name: "DIDComm Demo Public Page Build & Deploy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
name: "Use Node.js 18"
with:
node-version: "18.x"
- name: "Install packages"
run: npm ci
- name: "Build & Pack"
run: npm run build
- name: "Bundle index page"
run: cp public/index.html bin/
- name: "Fixup permissions"
run: |
chmod -c -R +rX "bin/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: "Publish Github Pages"
uses: actions/upload-pages-artifact@v2
with:
path: bin
# Deployment job
deploy:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
pages: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2