Skip to content

Fix API and parameterize port number (#67) #7

Fix API and parameterize port number (#67)

Fix API and parameterize port number (#67) #7

Workflow file for this run

name: Sync README.md of gh-pages branch with main branch
on:
push:
branches:
- "main"
paths:
- "README.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
cp -f deployment/console-plugin-nvidia-gpu/README.md ${{ runner.temp }}/README.md
- uses: actions/checkout@v2
with:
ref: gh-pages
- run: |
cp -f ${{ runner.temp }}/README.md .
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add README.md
git commit --signoff -m "Sync deployment/console-plugin-nvidia-gpu/README.md from main"
git push