Github Action 에서 현재 시간 가져오기 $(date) "$GITHUB_OUTPUT"
2024-02-09 1. 방법 - name: Get current date id: date run: echo "date=$(date +'%Y-%m-%d-%H-%M-%S')" >> "$GITHUB_OUTPUT" - run: echo ${{ steps.date.outputs.date }} 2. 예시 도커 이미지에 날짜 태그로 붙여서 사용 docker push ${{ secrets.DOCKER_USERNAME }}/${{ secrets.MAIN_DOCKER_REPONAME }}:${{ steps.date.outputs.date }} 3. 출처 https://stackoverflow.com/questions/60942067/get-current-date-and-time-in-github-workflows Get..