Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
Fix variable references in action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansangillo committed Aug 25, 2020
1 parent 0f02aa3 commit 5cb314c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ inputs:
outputs:
revision:
description: 'The new version that was created and tagged in the format of <major>.<minor>.<build>[.<pre-release-tag>]'
value: ${{ steps.bump-version.outputs.revision }}
value: ${{ steps.tag-version.outputs.revision }}
is-prerelease:
description: 'Is true if this is a release into a non-production environment and indicates the build may be unstable. Returns false otherwise.'
value: ${{ steps.bump-version.outputs.is-prerelease }}
value: ${{ steps.tag-version.outputs.is-prerelease }}
runs:
using: composite
steps:
- id: bump-version
run: bash $GITHUB_ACTION_PATH/src/tag-version.sh ${{ inputs.production-branch }} ${{ inputs.uat-branch }} ${{ inputs.dev-branch }}
- id: tag-version
run: bash $GITHUB_ACTION_PATH/src/tag-version.sh ${{ inputs.production-branch }} ${{ inputs.test-branch }} ${{ inputs.dev-branch }}
shell: bash

0 comments on commit 5cb314c

Please sign in to comment.