Skip to content

Commit

Permalink
Fix release time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
jorg-vr committed Jun 4, 2024
1 parent 98a795c commit 5f55689
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-naos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
type: remove
- name: Get tag name
id: tag_name
run: echo "tag_name=$(date +'%Y.%m.%d-%H:%M')" >> "$GITHUB_ENV"
run: echo "tag_name=$(TZ='Europe/Brussels' date +'%Y.%m.%d-%H:%M')" >> "$GITHUB_ENV"
- uses: actions/checkout@v3
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "deploy production $GITHUB_SHA" | ssh -p 4840 [email protected]
- name: Get tag name
id: tag_name
run: echo "tag_name=$(date +'%Y.%m.%d-%H:%M')" >> "$GITHUB_ENV"
run: echo "tag_name=$(TZ='Europe/Brussels' date +'%Y.%m.%d-%H:%M')" >> "$GITHUB_ENV"
- uses: actions/checkout@v3
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/monthly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- name: Get tag name
id: tag_name
run: echo "tag_name=$(date +'%Y.%m')" >> "$GITHUB_ENV"
run: echo "tag_name=$(TZ='Europe/Brussels' date +'%Y.%m')" >> "$GITHUB_ENV"
- name: log tag name
run: echo ${{ env.tag_name }}
- uses: octokit/[email protected]
Expand Down

0 comments on commit 5f55689

Please sign in to comment.