Watch
2
0
Fork
You've already forked raylib-cs
0

convert XPath result to string

This commit is contained in:
Ben Parsons 2021-10-01 21:29:18 +10:00
commit 58a75e039b

View file

@ -34,12 +34,15 @@ jobs:
- name: ls repo - name: ls repo
run: "ls -la ." run: "ls -la ."
- name: cat app.config
run: "cat ./app.config"
- id: get-tag - id: get-tag
name: Get Target Raylib Version name: Get Target Raylib Version
uses: QwerMike/xpath-action@v1 uses: QwerMike/xpath-action@v1
with: with:
filename: "./app.config" filename: "./app.config"
expression: "//appSettings/add[@key='raylib-release-tag']/@value" expression: "string(//appSettings/add[@key='raylib-release-tag']/@value)"
- name: echo tag - name: echo tag
run: echo ${{ steps.get-tag.outputs.results }} run: echo ${{ steps.get-tag.outputs.results }}