Skip to content

Commit

Permalink
Update dockerimage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BulatSaif authored May 31, 2020
1 parent 2ad15a3 commit b5bddcc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: print
- name: github.ref
run: echo "${{ github.ref}}"
- name: print
- name: github.head_ref
run: echo "${{ github.head_ref }}"
- name: print
run: echo "${{ github }}"
- name: github.ref == 'refs/heads/master'
run: echo "${{ github.ref == 'refs/heads/master' }}"
- name: startsWith( github.ref, '/refs/tags/' )
run: echo "${{ startsWith( github.ref, '/refs/tags/' ) }}"
- name: github.ref == 'refs/heads/master' || startsWith( github.ref, '/refs/tags/' )
run: echo "${{ github.ref == 'refs/heads/master' || startsWith( github.ref, '/refs/tags/' ) }}"
- name: Disk spase
run: df -h
- name: PWD
Expand Down

0 comments on commit b5bddcc

Please sign in to comment.