Skip to content

Codelab Export

Codelab Export #23

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
- name: Push back
run: |
git config user.name nischalon10
git config user.email nischalon10@gmail.com
git add .
git commit -m "Adding Codelab"
git push https://nischalon10:${{secrets.GH_PAT}}@github.com/nischalon10/codelabtesting
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}