Skip to content

Commit

Permalink
replace deprecated pipeline constructs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Hoß authored and sebhoss committed Dec 9, 2022
1 parent f16024e commit fdc59d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
fetch-depth: 0
- id: commits
name: Count Commits
run: echo "::set-output name=count::$(git rev-list --count HEAD --since='last Friday' -- internal)"
run: echo "count=$(git rev-list --count HEAD --since='last Friday' -- internal)" >> $GITHUB_OUTPUT
- id: release
name: Create Release Version
if: steps.commits.outputs.count > 0
run: echo "::set-output name=version::$(date +'%Y.%-m.%-d')"
run: echo "version=$(date +'%Y.%-m.%-d')" >> $GITHUB_OUTPUT
- id: tag
name: Create Release Tag
if: steps.commits.outputs.count > 0
Expand Down

0 comments on commit fdc59d8

Please sign in to comment.