Created
May 7, 2022 18:52
-
-
Save stevehenderson/1591d9ae21a0357a4fad51761bb4f58c to your computer and use it in GitHub Desktop.
Google CloudBuild folder location debugging
This file contains hidden or 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
# Add the following step to kick some helpful debugging about what's in your google cloud build container! | |
- id: "Read Values" | |
name: ubuntu | |
dir: '/workspace' | |
entrypoint: bash | |
args: | |
- -c | |
- | | |
# Read from "/workspace" | |
echo "Where am I " $(pwd) | |
echo "Contents " $(find) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment