Codelab Export #19
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: Codelab Export | |
on: | |
push: | |
paths: | |
- 'codelab.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Important: This is needed to push back to the repo | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
- name: Install claat | |
run: go install github.com/googlecodelabs/tools/claat@latest | |
- name: Export codelab | |
run: | | |
claat export codelab.md | |
git config --global user.email "nischalon10@gmail.com" | |
git config --global user.name "nischalon10" | |
git add . | |
git commit -m "Update codelab output" || echo "No changes to commit" | |
git push https://nischalon10:${{secrets.GH_PAT}}@github.com/nischalon10/codelabtesting | |
env: | |
GH_PAT: ${{ secrets.GH_PAT }} |