We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0d31e8 commit 323464dCopy full SHA for 323464d
.github/workflows/build.yaml
@@ -26,11 +26,10 @@ jobs:
26
steps:
27
- name: set env
28
run: |
29
- echo "NOW=$(date +'%s')" >> $GITHUB_ENV
30
- echo "RLNAME=${{ github.event.inputs.py_commit }}-${NOW}" >> $GITHUB_ENV
+ echo "RLNAME=${{ github.event.inputs.py_commit }}-$(date +'%s')" >> $GITHUB_ENV
31
32
- name: test
33
- run: echo "now ${NOW} -- rl ${RLNAME}"
+ run: echo "rl ${RLNAME}"
34
35
- name: checkout python
36
uses: actions/checkout@v4
0 commit comments