0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Github Actions実行時のタイムゾーンはUTC

Posted at

という小ネタです。

image.png

確認のために使用したワークフローは以下です。

name: Debug

on:
  push:
    branches:
      - feature/*

jobs:
  check_timezone:
    name: Check Timezone
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Set up python
        uses: actions/setup-python@v5
        with:
          python-version: 3.8
      - run: python -c "import time; print(f'tzname {time.tzname}')"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?