Skip to content
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

Dfoulks/asciidoc #77

Open
wants to merge 73 commits into
base: main
Choose a base branch
from
Open

Dfoulks/asciidoc #77

wants to merge 73 commits into from

Conversation

dfoulks1
Copy link
Contributor

@dfoulks1 dfoulks1 commented Dec 3, 2024

Requesting to add the AsciiDoc action (builds Asciidoc files and commits to perscribed branch)

Uses

  • checkout@v3

Process

  • Checks out code
  • Installs nodejs + asciidoc packages
  • iterates through adoc files in $srcfiles
  • moves HTML and $assets to tempdir.
  • checks out new branch
  • cleans out cruft
  • commits new stuff to $dest branch

Copy link
Member

@assignUser assignUser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some comments, will have another look later

git status
if git commit -m "Commit build products"
then
git push
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm pretty sure this will fail as you are not setting up auth via actions/checkout or something.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was pulled from the pelican action and has been tested against the infrastructure-presentations repo

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume the workflow using the pelican action called actions/checkout then.

You could make it a usage requirement to use this within an existing checkout but that should be documented specifically requiring that persist-credentials: is set to true otherwise this will fail.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think calling the input publish instead of pushToBranch is unfortunate.

runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- uses: actions/setup-node@v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0

While it's an offical action and this doesn't require pinning in workflows I think it still makes sense within an action as the user has no control over it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would there be a way to test this / keep this hash up to date with dependabot or something? Trying to prevent having to touch this everytime there's an update.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes dependabot can do it, just add the dir with action.yml to the directories list in dependabot.yml

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would pin all actions also the ones coming from GitHub. The positive side effect is that your action does not have uncertainty wrt which exact action is being used. We have seen in the past that sometimes bugs are introduces in newly released versions and when you use just @v4 you will always get the latest released version of the v4 branch of that action. Having it pinned to an exact version makes actions more stable imho.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw. you can use https://github.com/eclipse-csi/octopin for pinning.

install with pipx install octocpin

if [[ "$(echo $file | awk -F. '{print $NF}')" != "adoc" ]]; then
continue
fi
echo $file
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was all ripped from the pelican action. If there's a better / more GHA way to approach this, I'm 100% interested.

fi
echo $file
node convert-slides.js $file
mv $(basename $file .adoc).html "${{ inputs.tempdir }}"/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
mv $(basename $file .adoc).html "${{ inputs.tempdir }}"/
mv $(basename $file).html "${{ inputs.tempdir }}"/

Or did that serve a purpose there? I think it would just be dropped?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the basename command requires a suffix to strip.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah that makes sense, if never needed that before :D

@janhoy
Copy link
Contributor

janhoy commented Dec 4, 2024

The name of this action is not precise. Asciidoc is a markdown format and can be used for writing books, READMEs or as in this case presentation slides with the reveal framework. So a better name for the action would probably be "presentations" or "slides" or "revealjs" or similar.

Copy link
Member

@assignUser assignUser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also create a workflow to test the action with some sample input and some different options (obv publish is hard to test, we could create a test branch?).

You can also add npm to dependabot with asciidoc as a directory:

  - package-ecosystem: "npm"
    directory: "/asciidoc/"
    schedule:
      interval: "monthly"

cp "${{ github.action_path }}/package.json" "${{ inputs.tempdir }}"
[ -d "${{ github.workspace }}/${{ inputs.assets }}" ] && cp -r "${{ github.workspace }}/${{ inputs.assets }}" "${{ inputs.tempdir }}" || echo "No ${{ inputs.assets }} found!"
working-directory: "${{ inputs.srcdir }}"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add an actions/upload-artifact step here if: ${{ inputs.publish != 'true' }} (or rather if: inputs.publish if you make it a boolean. I'll add a comment above).

That way you could check the created artifacts when running the action in a PR or something. (and we can use it in testing)

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can use to if: toJSON(inputs.publish) or something like that

@dfoulks1
Copy link
Contributor Author

dfoulks1 commented Dec 5, 2024

@janhoy: Thanks for the suggestion! I'll update it to asciidoc-slides

Co-authored-by: Jacob Wujciak-Jens <[email protected]>
Signed-off-by: dfoulks1 <[email protected]>
Copy link
Contributor Author

@dfoulks1 dfoulks1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

responding to comments

if [[ "$(echo $file | awk -F. '{print $NF}')" != "adoc" ]]; then
continue
fi
echo $file
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was all ripped from the pelican action. If there's a better / more GHA way to approach this, I'm 100% interested.

fi
echo $file
node convert-slides.js $file
mv $(basename $file .adoc).html "${{ inputs.tempdir }}"/
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the basename command requires a suffix to strip.

git status
if git commit -m "Commit build products"
then
git push
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was pulled from the pelican action and has been tested against the infrastructure-presentations repo

)
working-directory: "${{ github.action_path }}"

- name:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please name your steps

- name:
shell: bash
run: |
mkdir "${{ inputs.tempdir }}"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
mkdir "${{ inputs.tempdir }}"
: 'Some name for this step -- the same as the `name:` field -- so that users see this instead of just the first rather useless line of the step when looking at a workflow'
mkdir "${{ inputs.tempdir }}"

fi
echo $file
node convert-slides.js $file
mv $(basename $file .adoc).html "${{ inputs.tempdir }}"/
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never use ${{ ... }} inside a run: block.

Always use:

env:
  tempdir: ${{ inputs.tempdir }}
run: |
  ...
  echo "$tempdir"

cp "${{ github.action_path }}/package.json" "${{ inputs.tempdir }}"
[ -d "${{ github.workspace }}/${{ inputs.assets }}" ] && cp -r "${{ github.workspace }}/${{ inputs.assets }}" "${{ inputs.tempdir }}" || echo "No ${{ inputs.assets }} found!"
working-directory: "${{ inputs.srcdir }}"

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can use to if: toJSON(inputs.publish) or something like that

git status
if git commit -m "Commit build products"
then
git push
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think calling the input publish instead of pushToBranch is unfortunate.

uses: actions/upload-pages-artifact@v3
with:
path: '${{ inputs.srcdir }}/${{ inputs.output }}'
- name: Deploy to GitHub Pages[
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems like a typo at the end '[' ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants