We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd0de6 commit ffdc2b6Copy full SHA for ffdc2b6
.github/workflows/deploy_on_dev.yml
@@ -57,6 +57,12 @@ jobs:
57
pip install pytest
58
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
59
60
+ - name: Get current date and repo name
61
+ id: info
62
+ run: |
63
+ echo "::set-output name=date::$(date +'%Y-%m-%d_%H:%M:%S')"
64
+ echo "::set-output name=repository_name::$(echo ${{ github.repository }} | sed -e 's/${{ github.repository_owner }}\///')"
65
+
66
# Checkout and import zappa config & environment variables from secrets repo
67
- name: Checkout secrets repo
68
uses: actions/checkout@v4
0 commit comments