Skip to content

Commit

Permalink
Setting output with bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hannebauer committed Jun 28, 2024
1 parent 8c613d0 commit c4fdead
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ jobs:
- name: Create tag
id: create_tag
shell: bash
run: |
$tag=$(date +"%Y%m%d-%H%M-framework")
echo "tag=$tag" >> $GITHUB_ENV
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Create Draft Release
id: create_release
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-linux-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ jobs:

- name: Create tag
id: create_tag
shell: bash
run: |
$tag=$(date +"%Y%m%d-%H%M-linux-core")
echo "tag=$tag" >> $GITHUB_ENV
tag=$(date +"%Y%m%d-%H%M-linux-core")
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Create Draft Release
id: create_release
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-windows-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ jobs:

- name: Create tag
id: create_tag
shell: bash
run: |
$tag=$(date +"%Y%m%d-%H%M-windows-core")
echo "tag=$tag" >> $GITHUB_ENV
tag=$(date +"%Y%m%d-%H%M-windows-core")
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Create Draft Release
id: create_release
Expand Down

0 comments on commit c4fdead

Please sign in to comment.