Skip to content

Commit

Permalink
I misrememberd that badly
Browse files Browse the repository at this point in the history
  • Loading branch information
emilymclean committed Jul 10, 2024
1 parent 8b435b5 commit e5b7182
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs = (b.jobs) {
if [[ $contents =~ $regex ]]
then
echo ${BASH_REMATCH[1]}
lemmyVersion=${BASH_REMATCH[1]} >> $GITHUB_OUTPUT
echo "lemmyVersion=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
else
echo Zoinks Scoob!
exit 1;
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs = (b.jobs) {
}
new CommandStep {
id = "version"
run = "version=${{ needs.read-lemmy-version.outputs.lemmyVersion }}-${{ steps.gitversion.outputs.semVer }} >> $GITHUB_OUTPUT"
run = "echo \"version=${{ needs.read-lemmy-version.outputs.lemmyVersion }}-${{ steps.gitversion.outputs.semVer }}\" >> $GITHUB_OUTPUT"
}
new CommandStep {
name = "Display SemVer"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
useConfigFile: true
configFilePath: ./gitversion.yml
- id: version
run: version=${{ needs.read-lemmy-version.outputs.lemmyVersion }}-${{ steps.gitversion.outputs.semVer }} >> $GITHUB_OUTPUT
run: echo "version=${{ needs.read-lemmy-version.outputs.lemmyVersion }}-${{ steps.gitversion.outputs.semVer }}" >> $GITHUB_OUTPUT
- name: Display SemVer
run: 'echo "SemVer: ${{ needs.read-lemmy-version.outputs.lemmyVersion }}-${{ steps.gitversion.outputs.semVer }}"'
build:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
if [[ $contents =~ $regex ]]
then
echo ${BASH_REMATCH[1]}
lemmyVersion=${BASH_REMATCH[1]} >> $GITHUB_OUTPUT
echo "lemmyVersion=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
else
echo Zoinks Scoob!
exit 1;
Expand Down

0 comments on commit e5b7182

Please sign in to comment.