Skip to content

Commit

Permalink
Merge pull request #70 from ONSdigital/fix_setoutput
Browse files Browse the repository at this point in the history
Fix setoutput
  • Loading branch information
SteveScorfield authored Dec 22, 2022
2 parents f7d0fa6 + 6cf4513 commit e6eccdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
PR=$(echo "$GITHUB_REF" | awk -F / '{print $3}')
echo "$PR"
echo ::set-output name=pr_number::pr-"$PR"
echo "pr_number=pr-$PR" >> $GITHUB_OUTPUT
- name: Publish dev Chart
if: github.ref != 'refs/heads/main'
Expand All @@ -67,7 +67,7 @@ jobs:
id: vars
run: |
git fetch --tags
echo ::set-output name=tag::$(git describe --tags --abbrev=0)
echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- name: update versions
if: github.ref != 'refs/heads/main'
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
id: release
shell: bash
run: |
echo ::set-output name=version::$(grep -E "appVersion:\s+" $CHART_DIRECTORY/Chart.yaml | cut -d" " -f2 | sed -r 's/"//g')
echo "version=$(grep -E "appVersion:\s+" $CHART_DIRECTORY/Chart.yaml | cut -d" " -f2 | sed -r 's/"//g')" >> $GITHUB_OUTPUT
- name: Publish Charts
if: github.ref == 'refs/heads/main'
Expand Down
4 changes: 2 additions & 2 deletions _infra/helm/uaa/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 2.1.7
version: 2.1.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 2.1.7
appVersion: 2.1.8

0 comments on commit e6eccdb

Please sign in to comment.