use github env rather than workflow outputs

This commit is contained in:
Martin McKeaveney 2021-12-16 15:36:34 +01:00
parent 7b656234bb
commit 19f09d188a
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ jobs:
else
release_version=${{ github.event.inputs.version }}
fi
echo "::set-output name=release_version::$release_version"
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
@ -48,5 +48,5 @@ jobs:
config-files: values.production.yaml
chart-path: charts/budibase
namespace: budibase
values: globals.appVersion=v${{ github.event.inputs.version }}
values: globals.appVersion=v${{ env.RELEASE_VERSION }}
name: budibase-prod