Skip to content

Commit

Permalink
Fixing date grabbing
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBarclay committed Mar 19, 2024
1 parent 08241ce commit 66faf3b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/FissionPackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
with:
node-version: 20

- name: Get date
id: date # this is used on variable path
run: |
echo "timestamp=$(date +'%Y-%m-%dT%H-%M-%S')" >> $GITHUB_OUTPUT
- name: Install Dependencies
run: |
cd fission
Expand All @@ -40,5 +45,5 @@ jobs:
uses: actions/upload-artifact@v4
id: upload-artifact
with:
name: "${{ steps.info.outputs.name }}@${{ steps.info.outputs.version }} [$(date +'%Y-%m-%dT%H:%M:%S')]"
name: "${{ steps.info.outputs.name }}@${{ steps.info.outputs.version }}[${{ steps.date.outputs.timestamp }}]"
path: fission/dist/

0 comments on commit 66faf3b

Please sign in to comment.