Skip to content

Commit

Permalink
fix(release-to-candidate): pop project_root off the stack before revi…
Browse files Browse the repository at this point in the history
…ew stage
  • Loading branch information
jnsgruk committed Apr 23, 2024
1 parent 71f7b9e commit 6eaaca8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release-to-candidate/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ runs:
manifest="${PWD}/manifest-${arch}.yaml"
cd "$project_root" && git init || exit
pushd "$project_root" && git init || exit
if ! snapcraft remote-build --launchpad-accept-public-upload; then
cat "${name}_${arch}.txt"
Expand All @@ -90,6 +90,8 @@ runs:
exit 1
fi
popd
# Write the manifest file which is used by later steps
echo "snap=${name}_${version}_${arch}.snap" >> "$GITHUB_OUTPUT"
if [[ -n "$project_root" ]]; then
Expand Down

0 comments on commit 6eaaca8

Please sign in to comment.