Skip to content

Commit fb91041

Browse files
ci(github): create uuid.yml
1 parent 56ead87 commit fb91041

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/uuid.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: uuid
2+
on: push
3+
4+
jobs:
5+
uuid:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Generate UUID
9+
run: echo "UUID=$(uuidgen)" >> $GITHUB_ENV
10+
11+
- name: Print UUID
12+
run: echo $UUID # ${{ env.UUID }}

0 commit comments

Comments
 (0)