changed seed (#123) #1
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: Auto-Update Go Quickstart Page | |
on: | |
push: | |
branches: | |
- latest | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
sparse-checkout: .github | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'latest' | |
- name: Run quickstart script | |
env: | |
REPO_TOKEN: ${{ secrets.DOCS_ACTION_TOKEN }} | |
run: | | |
cd ./.github/scripts/quickstart_go | |
ls | |
npm ci | |
node update_quickstart_go.js |