Skip to content

fix: Try to expand variables #8

fix: Try to expand variables

fix: Try to expand variables #8

Workflow file for this run

name: Update version-set
on:
push:
tags:
- "v*.*.*"
jobs:
versionset:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- name: Checkout current code
uses: actions/checkout@v3
with:
path: 'source'
- name: Get values
id: vars
run: |
echo GITHUB_REF_NAME: $GITHUB_REF_NAME
[ -f source/.versionset ] || { echo ".versionset file missing"; exit 1; }
echo "version_set_name=$(cat source/.versionset)" | tee $GITHUB_OUTPUT
- name: Checkout version-set repo
uses: actions/checkout@v3
with:
path: 'versionset'
repository: geokrety/justatest2
- name: Update Version-Set
uses: fjogeleit/yaml-update-action@main
with:
valueFile: 'main.yml'
changes: |

Check failure on line 35 in .github/workflows/version-set.yml

View workflow run for this annotation

GitHub Actions / Update version-set

Invalid workflow file

The workflow is not valid. .github/workflows/version-set.yml (Line: 35, Col: 20): Unrecognized named-value: 'echo'. Located at position 1 within expression: echo $GITHUB_REF_NAME
{
"${{ steps.vars.outputs.version_set_name }}.docker_tag": "${{ echo $GITHUB_REF_NAME }}",
"${{ steps.vars.outputs.version_set_name }}.git_url": "${{ echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY }}"
}
repository: geokrety/justatest2
targetBranch: main
token: ${{ secrets.GH_TOKEN }}
workDir: versionset
createPR: true
masterBranchName: main
branch: deployment/$GITHUB_REPOSITORY/$GITHUB_REF_NAME
commitUserName: geokrety-bot
commitUserEmail: [email protected]
message: |
feat: Update $GITHUB_REPOSITORY version to $GITHUB_REF_NAME