feat: 터미널 D-day 카운터 CLI(dday.py) 추가 #6
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
| name: show commit id and password | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Show commit Id | |
| env: | |
| COMMIT_ID: ${{ github.sha }} | |
| run: echo "commit id => $COMMIT_ID" | |
| - name: Show password | |
| env: | |
| MY_PASSWORD: ${{ secrets.PASSWORD }} | |
| run: echo "password => $MY_PASSWORD" |