core.info(`📂 Using ${workdir} as working directory...`);
process.chdir(workdir);
}
If I checkout my code into another directory so that I can set a $GOPATH:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
path: ${{ github.workspace }}/src/github.com/abatilo/my_repository
Since it appears that this action tries to get the git hash BEFORE doing any changing of directories, there is no .git directory in the starting directory of the action.
The text was updated successfully, but these errors were encountered:
goreleaser-action/dist/index.js
Lines 1422 to 1428 in 62b67a0
If I checkout my code into another directory so that I can set a
$GOPATH
:Since it appears that this action tries to get the git hash BEFORE doing any changing of directories, there is no
.git
directory in the starting directory of the action.The text was updated successfully, but these errors were encountered: