Skip to content

Templates update for nightly evcc-io/evcc@a44ba0d20d0b2a9b704a7f80029… #155

Templates update for nightly evcc-io/evcc@a44ba0d20d0b2a9b704a7f80029…

Templates update for nightly evcc-io/evcc@a44ba0d20d0b2a9b704a7f80029… #155

Workflow file for this run

name: build-deploy
on:
push:
branches: [main]
jobs:
build-commit-upload:
name: Build, Commit and Upload
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Generate docs from templates
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
name: Deploy to GitHub Pages
needs: build-commit-upload
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4