Merge pull request #56 from decentralized-identity/feature/help-modal… #24
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
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 |