From 91f4f4f1c8ea598ecb77d187ea26e803917faed8 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 28 Jun 2024 15:55:49 -0400 Subject: [PATCH] Correcting initial copyright year to match first commit... --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f7b196e..697281f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,8 +65,8 @@ jobs: eof - name: Update the copyright year run: | - find . -type f -exec sed -i -E 's/Copyright [0-9\-]+ DMTF/Copyright 2017-'$(date +'%Y')' DMTF/' {} \; - find . -type f -exec sed -i -E 's/Copyright \(c\) [0-9\-]+,/Copyright (c) 2017-'$(date +'%Y')',/' {} \; + find . -type f -exec sed -i -E 's/Copyright [0-9\-]+ DMTF/Copyright 2016-'$(date +'%Y')' DMTF/' {} \; + find . -type f -exec sed -i -E 's/Copyright \(c\) [0-9\-]+,/Copyright (c) 2016-'$(date +'%Y')',/' {} \; - name: Commit and push the updates run: | git config user.name "GitHub Release Workflow"