We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5230f0 commit 54cb7aaCopy full SHA for 54cb7aa
.github/workflows/release.yml
@@ -63,6 +63,18 @@ jobs:
63
uses: juliangruber/read-file-action@v1
64
with:
65
path: artifacts/HEAD
66
+ - name: Read versions
67
+ id: version
68
+ run: |
69
+ RELEASE_VERSION=`cat artifacts/RELEASE_VERSION`
70
+ PLAIN_VERSION=`cat artifacts/PLAIN_VERSION`
71
+ NEXT_VERSION=`cat artifacts/NEXT_VERSION`
72
+ echo "RELEASE_VERSION = $RELEASE_VERSION"
73
+ echo "PLAIN_VERSION = $PLAIN_VERSION"
74
+ echo "NEXT_VERSION = $NEXT_VERSION"
75
+ echo "::set-output name=RELEASE_VERSION::$RELEASE_VERSION"
76
+ echo "::set-output name=PLAIN_VERSION::$PLAIN_VERSION"
77
+ echo "::set-output name=NEXT_VERSION::$NEXT_VERSION"
78
- uses: actions/checkout@v3
79
80
ref: ${{ steps.head.outputs.content }}
0 commit comments