From 2fc49cd7451e3825a823417f87fff9a6a71a0d02 Mon Sep 17 00:00:00 2001 From: Gavin Inglis <43075615+ginglis13@users.noreply.github.com> Date: Fri, 28 Jul 2023 09:49:31 -0700 Subject: [PATCH] fix: add timestep stamp to generating rootfs (#130) Issue #, if available: *Description of changes:* fix issue in setting timestamp label *Testing done:* - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Gavin Inglis --- .github/workflows/rootfs.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/rootfs.yaml b/.github/workflows/rootfs.yaml index eb3cef6..8cbec71 100644 --- a/.github/workflows/rootfs.yaml +++ b/.github/workflows/rootfs.yaml @@ -21,6 +21,9 @@ jobs: matrix: arch: ['amd64', 'arm64'] steps: + - name: Generate Timestamp + id: timestamp + run: echo "::set-output name=value::$(date +%s)" - name: configure aws credentials uses: aws-actions/configure-aws-credentials@v2 with: