We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815afef commit 5b89be4Copy full SHA for 5b89be4
.github/workflows/build_docker.yml
@@ -22,7 +22,11 @@ jobs:
22
# Checkout canarytokens-docker repo. This lands in ./canarytokens-docker
23
- name: Set canarytokens-docker-branch
24
run: |
25
- BRANCH=$(if [ -z "${{ github.event.inputs.canarytokens-docker-branch}}" ]; then echo "master"; else echo "${{ github.event.inputs.canarytokens-docker-branch }}"; fi)
+ if [ -z "${{ github.event.inputs.canarytokens-docker-branch}}" ]; then
26
+ BRANCH="master"
27
+ else echo
28
+ BRANCH="${{ github.event.inputs.canarytokens-docker-branch }}"
29
+ fi
30
echo "CANARYTOKENS_DOCKER_BRANCH=$BRANCH" >> $GITHUB_ENV
31
32
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
0 commit comments