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?

More than 3 years have passed since last update.

【GitHub Actions】カスタム環境変数を読み込みたい

Last updated at Posted at 2021-02-08

やりたいこと

直接書きたくないトークン情報や環境変数を設定して、GitHubActions(.github/workflows/**.yml)で値を読み込む。

やり方

▼設定

対象のGitHubリポジトリから「⚙️Settings > Secrets > New repository secret」で、Name(呼び出し時にキーとなるもの。"secrets."は付けなくて良いです)とValue(トークン情報とか)を設定してあげます。

スクリーンショット 2021-02-09 1.31.13.png

いくつか命名などにルールがあるようですが、公式ドキュメントみると詳しく載っています。

▼読み込み

値へのアクセスはシンプルです。

.github/workflows/**.yml
steps:
  - name: Hello world action
    with: # HOGEは設定した値によって読み替えてください
      super_secret: ${{ secrets.HOGE }}
    env:
      super_secret: ${{ secrets.HOGE }}

こちらも公式ドキュメントに詳しく載っています。

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?