0.130.2 #191
Workflow file for this run
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
name: Deploy data to website | |
env: | |
GO_VERSION: ^1.23 | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
brandupdate: | |
name: Deploy data to website | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
id: go | |
- name: Build docs | |
run: make install docs | |
- name: Remove .gitignore to allow brands.json to be committed | |
run: rm templates/evcc.io/.gitignore | |
- name: Deploy to evcc.io repo | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
personal_token: ${{ secrets.GH_TOKEN }} | |
publish_dir: ./templates/evcc.io/ | |
external_repository: evcc-io/evcc.io | |
publish_branch: main | |
destination_dir: data | |
allow_empty_commit: false | |
commit_message: Brand data update | |
if: success() |