Skip to content

Delete .github/workflows/quant.yml #12

Delete .github/workflows/quant.yml

Delete .github/workflows/quant.yml #12

Workflow file for this run

name: Print Current Datetime
on:
push:
branches:
- main
jobs:
print_datetime:
runs-on: ubuntu-latest
steps:
- name: Print current datetime
run: |
echo "Current Datetime: ${{ github.event.head_commit.timestamp }}"
- name: Print formatted datetime
run: |
formatted_datetime=$(date -d "${{ github.event.head_commit.timestamp }}" +'%Y-%m-%d')
echo "Formatted Datetime: $formatted_datetime"