Skip to content

Commit

Permalink
allow to password contains special symbols (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-leschenko committed Dec 15, 2020
1 parent 9cd1598 commit c19b43d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flannel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build and push images
if: ${{ github.event_name == 'push' }}
run: |
echo ${{ secrets.DOCKER_SECRET }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
echo "${{ secrets.DOCKER_SECRET }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
$gittag = '-'+(($env:GITHUB_REF -split '/' | select-object -skip 2) -join '-')
./build.ps1 -push -tagSuffix $gittag
- name: Build images (without push)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kube-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Build and push images
if: ${{ github.event_name == 'schedule' }}
run: |
echo ${{ secrets.DOCKER_SECRET }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
echo "${{ secrets.DOCKER_SECRET }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
./build.ps1 -push
- name: Build images (without push)
if: ${{ github.event_name == 'pull_request' }}
Expand Down

0 comments on commit c19b43d

Please sign in to comment.