Skip to content

consolidate dafny version #1

consolidate dafny version

consolidate dafny version #1

Workflow file for this run

# This workflow reads the project.properties
# into the environment variables
# and then creates an output variable for `dafnyVersion`
name: Dafny Version
jobs:
getDafnyVersion:
outputs:
dafnyVersion: $${{steps.getVersion.outputs.dafnyVersion}}
steps:
- id: getVersion
shell: bash
run: |
export `cat ../../project.properties`
echo "dafnyVersion=$dafnyVersion" >> "$GITHUB_OUTPUT"