-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90bf5db
commit 4fbb6fe
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Export codelab from Google Doc | ||
|
||
on: | ||
push: | ||
branches: ["!main"] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-codelab: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.22.2' # The Go version to download (if necessary) and use. | ||
- run: go install github.com/googlecodelabs/tools/claat@latest | ||
- name: Export with CLAAT | ||
run: mkdir -p ./public/ && claat export -f html -o public docs/workshop.md |
File renamed without changes.