Skip to content

Commit

Permalink
fix: bad working directory in go runtime push (#2356)
Browse files Browse the repository at this point in the history
Fixes working directory syntax for go runtime push action by using
context instead of env var.
  • Loading branch information
MrArnoldPalmer committed Dec 15, 2020
1 parent 76cc181 commit 53457e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push-go-runtime.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
--scope @jsii/go-runtime
- name: Build Repo Directory
id: build-repo-dir
working-directory: $GITHUB_WORKSPACE/packages/@jsii/go-runtime
working-directory: ${{ github.workspace }}/packages/@jsii/go-runtime
env:
JSII_RUNTIME_REPO_NAME: ${{ secrets.JSII_RUNTIME_REPO_NAME }}
JSII_RUNTIME_REPO_USERNAME: ${{ secrets.JSII_RUNTIME_REPO_USERNAME }}
Expand Down

0 comments on commit 53457e2

Please sign in to comment.