Merge pull request #54 from k8spatterns/dependabot/go_modules/dot-git… #158
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: Update Website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
website: | |
runs-on: ubuntu-latest | |
container: | |
image: golang:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Update Website | |
run: go run update_website.go -pattern-source .. | |
working-directory: ./.github | |
env: | |
GITHUB_TOKEN: ${{ secrets.K8SPATTERN_GITHUB_TOKEN }} | |