Bump go-git to latest, includes workaround for x/crypto ssh hostkey s… #49
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: CD | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.x | |
- name: Deploy Docs | |
run: make deploy-docs | |
env: | |
GIT_USER: ${GITHUB_ACTOR} | |
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} |