-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Use version action for all workflows - the new action works for both dev and release versions. 2. Use new check-git-status action.
- Loading branch information
1 parent
509a5d2
commit f623d85
Showing
7 changed files
with
32 additions
and
73 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: dev-version | ||
|
||
on: | ||
workflow_call: | ||
outputs: | ||
version: | ||
description: Calculated version | ||
value: ${{ jobs.version.outputs.version }} | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} | ||
|
||
jobs: | ||
version: | ||
runs-on: ubuntu-latest | ||
name: Calculate Dev Version | ||
steps: | ||
- id: version | ||
name: Calculate build version | ||
uses: pulumi/provider-version-action@v1 | ||
outputs: | ||
version: ${{ steps.version.outputs.VERSION }} |