Regenerate tutorials #17
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: Regenerate tutorials | |
on: | |
schedule: | |
- cron: '0 7 * * 1-5' | |
workflow_dispatch: | |
jobs: | |
main: | |
if: github.repository == 'grafana/killercoda' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: grafana/loki | |
# Change to `main` after this branch is merged. | |
ref: jdb/2024-06-killercoda-migration | |
path: loki | |
- uses: actions/checkout@v4 | |
with: | |
ref: jdb/2024-06-killercoda-migration | |
path: killercoda | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: killercoda/tools/transformer/go.mod | |
- run: go build ./ | |
working-directory: killercoda/tools/transformer | |
- run: > | |
./transformer | |
"${GITHUB_WORKSPACE}/loki/docs/sources/get-started/quick-start.md" | |
"${GITHUB_WORKSPACE}/killercoda/loki/loki-quickstart" | |
working-directory: killercoda/tools/transformer | |
- run: ./scripts/manage-pr.bash | |
env: | |
GH_TOKEN: ${{ github.token }} | |
shell: bash | |
working-directory: killercoda |