Skip to content

Commit 3f96a8a

Browse files
committed
環境変数のオーバーライドを行うワークフローを追加
1 parent eeac034 commit 3f96a8a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Override Environment Variables
2+
on: push
3+
env:
4+
EXAMPLE: Defined by workflow level
5+
jobs:
6+
print:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- run: echo "${EXAMPLE}"
10+
- env:
11+
EXAMPLE: Defined by step level
12+
run: echo "${EXAMPLE}"

0 commit comments

Comments
 (0)