This file contains 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
### deployment tool aliases | |
## docker | |
# docker image | |
alias dckils='docker image ls' | |
alias dckilsa='docker image ls -a' | |
# docker container | |
alias dckcls='docker container ls' |
This file contains 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
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: <<true | recursive>> | |
# Generate a personal access token from https://github.com/settings/tokens | |
# Added that token as a secret in your repo at https://github.com/<<username>>/<<repo>>/settings/secrets/new | |
# In the token key below, access the same token using secrets.<<YOUR_SECRET_NAME>> | |
token: ${{ secrets.MY_ACCOUNT_PAT }} | |
# For more reference see |