Skip to content

Commit

Permalink
ci: fix set timestamp output
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez committed Jul 9, 2024
1 parent af3a2ed commit 1e90321
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ jobs:

- name: Generate Timestamp
id: timestamp
run: echo "{value}={$(date +%s)}" >> $GITHUB_OUTPUT
run: echo "value=$(date +%s)" >> $GITHUB_OUTPUT

- name: Add Ventura builds to tarballs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rootfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- name: Generate Timestamp
id: timestamp
run: echo "{value}={$(date +%s)}" >> $GITHUB_OUTPUT
run: echo "value=$(date +%s)" >> $GITHUB_OUTPUT
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
with:
Expand Down

0 comments on commit 1e90321

Please sign in to comment.