Skip to content

Commit

Permalink
adapted dev versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioGaming committed May 29, 2024
1 parent b66b97b commit 56d57d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev-autopublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Determine version
id: version
run: echo "::set-output name=version::0.$((${GITHUB_RUN_NUMBER} / 10)).$((${GITHUB_RUN_NUMBER} % 10))"
run: echo "::set-output name=version::$((GITHUB_RUN_NUMBER / 100)).$(((GITHUB_RUN_NUMBER % 100) / 10)).$((GITHUB_RUN_NUMBER % 10))"

- name: Get Project Version
id: base_version
Expand Down

0 comments on commit 56d57d6

Please sign in to comment.