1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

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

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