-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor github pages deployment fixes #164
Conversation
@@ -59,6 +59,6 @@ runs: | |||
if: ${{ always() && inputs.jb-save == 'true'}} | |||
uses: actions/upload-artifact@v4 | |||
with: | |||
name: build-${{ inputs.os }} | |||
name: build-${{ runner.os }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is automatically set on all runners, so don't need to pass it as an input https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
@jomey looks like the |
followup to #163, which was hard to test, since we needed to actually run a deployment by merging to main
I also fixed one path here, and it seems to work well 3854ac5
Composite workflow does not seem to be picking up step outputs, so removing this, and using whatever is set by default (not sure if it will pick up custom cname, but it's really just a convenience anyways to have the URL easily accessible from the actions log)
Environment URL '' is not a valid http(s) URL, so it will not be shown as a link in the workflow graph.
Also add runner os to actions artifact name (in the case of a matrix job rendering the website on both linux and macos there will not be a name conflict)