Configure git for private modules

This commit is contained in:
Christian Rocha 2020-05-18 11:59:37 -04:00 committed by Christian Muehlhaeuser
commit cd9ee93dca

View file

@ -10,6 +10,11 @@ jobs:
env:
GO111MODULE: "on"
steps:
- name: Configure git for private modules
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: git config --global url."https://meowgorithm:${TOKEN}@github.com".insteadOf "https://github.com"
- name: Install Go
uses: actions/setup-go@v1