Skip to content

chore: Remove built files from project #1

chore: Remove built files from project

chore: Remove built files from project #1

Workflow file for this run

on:
push:
branches:
- main
- feat/gh-pages-build
jobs:
build:
name: "DIDComm Demo Public Page Build & Deploy"

Check failure on line 9 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
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-artifact@v2
with:
path: bin