Skip to content

Commit

Permalink
Merge pull request #29 from hyperledger/swcurran-patch-6
Browse files Browse the repository at this point in the history
Update render-specs.yml
  • Loading branch information
swcurran authored Aug 13, 2024
2 parents 53ef377 + e2e1f34 commit c678809
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/render-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,25 @@ on:
jobs:
build_spec:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run render
- name: Override gitignore
run: git add -f docs/index.html
- name: Override gitignore
run: git add -f docs/index.html

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: . # The folder the action should deploy.

0 comments on commit c678809

Please sign in to comment.