123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679 |
- = Converting the Wiki to Antora
- :author: mitm
- :revnumber: 1.0
- :revdate: 5/9/2020
- :experimental:
- == Getting Started
- Setup is based off link:https://help.github.com/en/actions/language-and-framework-guides/using-nodejs-with-github-actions[Using Node.js with GitHub Actions], link:https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows[Caching dependencies to speed up workflows], and the link:https://docs.antora.org/antora/2.3/install/install-antora/[Install Antora] guides. It is expected that the repository has already been cloned locally.
- .Definitions
- . GitHub Web Interface (GWI)
- . Git Command Line Interface (CLI)
- . Continuous Integration (CI)
- .Tools needed
- . A gitHub account.
- . The Atom Editor, setup for using AsciiDoctor.
- . Git (CLI).
- == Activating Dispatch Event
- We use a dispatch_event to build the wiki anytime there are new changes tagged on the wiki-ui repository.
- To activate the `Docs Dispatch Event` command, it must share a personal access token, with permissions `public_repo`, with the jMonkeyEngine Wiki.
- You setup the token first from your personal account with the token name `WIKI_UI_DISPATCH`.
- See: https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line
- Then in the wiki-ui repository under menu:Settings[Secrets] add the new token with the format:
- ```
- username:token
- ```
- == Setup of Node.js
- GitHub Actions requires a workflow file (main.yml) to be located in a `.github/workflows` folder. In order to use (CI) with the workflow, there must be a `package.json` and `package-lock.json` file located in the root of the repository. Node.js will build and update these files for us.
- * We use an action named "`EndBug/add-and-commit@v4`" to commit the `package.json` and `package-lock.json` files to the repository any time there are changes that affect these files.
- * We use an action named "`peaceiris/actions-gh-pages@v3`" to publish the built website to the `gh-pages` branch whenever there is a push to the repo.
- * We use a `repository_dispatch` webhook event configured to recieve events from the wiki-ui repo to build the docs whenever there is a new release pushed to the UI repository.
- These steps are all built into the workflow file.
- [NOTE]
- ====
- You can edit/add the main.yml from a git (CLI) or the (GWI) only.
- This tutorial uses (CLI) for workflow file edits, and the Atom Editor for editing all other files. Since both the (CLI) and Atom Editor are working with the same repository, both will stay synchronized with the local repository.
- ====
- == Prepare Repository
- . From the (CLI):
- .. Checkout a new branch named `antora-setup`.
- .. Create the destination folder `docs/modules/ROOT` in the root of the local repository.
- .. Move the folders found inside the Wiki `src/docs/` folder to the destination folder.
- +
- --
- This will be the destination final results.
- ```
- |-docs
- |-modules
- |-ROOT
- |-images
- |-pages
- |-resources
- ```
- [IMPORTANT]
- ====
- Use `git mv` from the (CLI) to retain all history.
- git mv [-v] [-n] <source> <destination>
- pass:[*] [-n] option will do nothing; only show what would happen. Remove when ready to complete the move.
- ====
- [cols="2",header=true]
- |===
- a|<source>
- a|<destination>
- a|`src/docs/images`
- a|`docs/modules/ROOT/images`
- a|`src/docs/resources`
- a|`docs/modules/ROOT/resources`
- a|`src/docs/asciidocs`
- a|`docs/modules/ROOT/pages`
- |===
- IMPORTANT: The move to the `docs/modules/ROOT/pages` folder is a rename of the `asciidoc` folder. Do not move the folder into pages.
- --
- .. Add, commit and push the `antora-setup` branch to the repository.
- == Setup Workflow
- All files for setup can be found inside the `transition-docs` module where this document is located. These are the final configuration files using the `master` branch to trigger builds and assume all steps have been completed and Antora is now in control of the build process for the wiki.
- Using the workflow shown below will execute on the `antora-setup` branch pushing the build to the `gh-pages` branch allowing setup to be completed. This will allow for testing the build prior to merging the branch to `master`.
- The changes that affect the workflow branch are as follows:
- ```
- on:
- push:
- branches: [ antora-setup ]
- uses: actions/checkout@v2
- with:
- ref: antora-setup
- ```
- TIP: It's a good idea to have the (GWI) actions tab open in a browser so the build can be monitored.
- The action `EndBug/add-and-commit@v4` will commit to the branch that triggered the workflow.
- . From the (CLI):
- .. Create a `.github/workflows` folder in the `antora-setup` branch.
- .. Add the initial "`main.yml`" file below as a new workflow.
- +
- --
- NOTE: The initial file is designed to be used in steps, commenting and uncommenting commands as the changeover progresses. The finalized link:{attachmentsdir}/main.yml[main.yml] is in the `transition-docs` module.
- .Initial main.yml
- [source, yml]
- ----
- # This file can be used to configure the Node.js build for Antora ci without
- # having Node installed locally. See 'transition-docs/antora_setup.adoc' in the root
- # of this repo for details of how to use this file.
- #
- # The action add-and-commit will always commit the package-lock.json,
- # package.json and Antora cache only if changes are made to the files.
- #
- # If the package-lock.json or package.json files are updated or new depends are
- # installed, the 'npm ci' should be always ran thereafter to speed up build
- # times. When ci is active, the package-lock.json and package.json files in root
- # will not be updated.
- #
- # Uses the action actions-gh-page to publish pages to the gh-pages branch,
- # including a required .nojekyll file that Antora requires for configuration.
- #
- # The 'actions/cache@v2' creates a new cache when the packages in
- # package-lock.json file change, or when the workflow runner's operating system
- # changes.
- name: Build Docs
- on:
- push:
- branches: [ antora-setup ]
- # Initiate a build to pull in the wiki-ui repository changes.
- repository_dispatch:
- types: [wiki-ui-build]
- pull_request:
- jobs:
- build:
- #Static version is used to maintain stability.
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- #Static version is used to maintain stability.
- node-version: [12.17.0]
- steps:
- - name: Clone the repo
- uses: actions/checkout@v2
- with:
- ref: antora-setup
- # Number of commits to fetch. 0 indicates all history.
- fetch-depth: 1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- # Display the sha of the build triggering the repository_dispatch event.
- - name: wiki-ui-build
- if: github.event.action == 'wiki-ui-build'
- run: echo wiki-ui-build sha ${{ github.event.client_payload.sha }}
- # Uncomment to write the default package.json file to the repo root.
- # When used in conjunction with the action add-and-commit 'add' command, the
- # file will be written to the repo for editing.
- - name: Install default package.json
- run: npm init --yes
- # Uncomment when adding or updating dependencies in the package-lock.json
- # and package.json files for ci.
- - name: Install Node
- run: npm i
- # Uncomment during initial setup or when updating Antora to a new version.
- # The action add-and-commit 'add' command will detect the changes and commit
- # the package-lock.json and package.json files.
- # Emoji support. Seems to be a direct implementation of AsciiDoctor ruby
- # extension.
- # see: https://github.com/mogztter/asciidoctor-emoji
- - name: Install Antora
- run: |
- npm i @antora/[email protected]
- npm i @antora/[email protected]
- npm i asciidoctor-emoji
- # Uncomment after package-lock.json and package.json files are updated.
- # - name: Run with CI
- # run: npm ci
- - name: Audit Depends
- run: npm audit
- # - name: Build Docs
- # run: npm run buildDocs
- # Detects any updates to package-lock.json and package.json and commits the
- # files to root.
- # see:
- # https://github.com/marketplace/actions/add-commit?version=v4.1.0
- # for use options.
- - name: Commit Packages
- uses: EndBug/add-and-commit@v4
- with:
- author_name: mitm001
- author_email: [email protected]
- message: "Commit files for CI workflow"
- # Commits these files to root if and only if there are changes.
- add: "package-lock.json package.json"
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- # Antora will not copy folders outside the family tree so we move the
- # resources into the build/site folder so the peaceiris action will commit
- # the files.
- # - name: Copy Tutorials
- # run: cp -r ./docs/modules/ROOT/resources/* ./build/site/
- # Commit changes to the gh-pages branch. Antora requires an empty
- # '.nojekyll' be present in the branch due to certain directories starting
- # with an underscore. This action has an option, set by default, to add that
- # file for us on commit.
- # see:
- # https://github.com/marketplace/actions/github-pages-action?version=v3.6.1
- # for use options.
- # - name: Deploy Docs
- # uses: peaceiris/actions-gh-pages@v3
- # with:
- # github_token: ${{ secrets.GITHUB_TOKEN }}
- # Commits these files to gh-pages if and only if there are changes.
- # publish_dir: ./build/site
- # Insert CNAME for repository.
- # cname: wiki.jmonkeyengine.org
- ----
- The initial main points of interest are as follows.
- ```
- repository_dispatch:
- types: [wiki-ui-build]
- ```
- When the webhook event `repository_dispatch` is triggered, with a secret `WIKI_UI_DISPATCH` token that matches the same secret token of this repository and with the `event_type` "`wiki-ui-build`", the workflow build will run.
- See:
- * https://developer.github.com/v3/repos/#create-a-repository-dispatch-event
- * https://blog.marcnuri.com/triggering-github-actions-across-different-repositories/
- * https://help.github.com/en/actions/reference/events-that-trigger-workflows#external-events-repository_dispatch
- ```
- #Static version is used to maintain stability.
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- #Static version is used to maintain stability.
- node-version: [12.17.0]
- ```
- With the above lines, we are using a static version of `Unbuntu` and `Node.js`. Updates can potentially break things, and we would find out after the fact rather than knowing immediately that there was a problem.
- [TIP]
- ====
- Setting the node version using the matrix strategy has the added benefit of appending the Node.js version to our job `build` on the (GWI) dashboard.
- For example, our job name `build`, will have the version `12.17.0` appended like so:
- image::vers_append.png[vers_append.png]
- ====
- ```
- - name: Install default package.json
- run: npm init --yes
- ```
- The above line will create our default `package.json` file that will control the (CI) and hold any command line scripts we implement. Once this file is commited to the repo, this line is no longer used.
- ```
- - name: Install Node
- run: npm i
- ```
- This will install node into our workflow and create our initial `package-lock.json` file. Once the `package-lock.json` file is committed, this line will only be used to when adding new packages by appending the package name to the command. Change it to `run: npm update` to update depends.
- ```
- - name: Install Antora
- run: |
- npm i @antora/[email protected]
- npm i @antora/[email protected]
- npm i asciidoctor-emoji
- ```
- The above command will install our Antora depends.
- ```
- with:
- author_name: mitm001
- author_email: [email protected]
- message: "Commit files for CI workflow"
- ```
- The above is the author and message of the commit action. If the author name and email are not set, a warning will be thrown if `repository_dispatch` triggers a workflow. Customize as needed.
- ```
- # Commits these files to root if and only if there are changes.
- add: "package-lock.json package.json*"
- ```
- This line will commit the `package-lock.json` and `package.json` if there are any changes to the files.
- ```
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- ```
- The `secrets.GITHUB_TOKEN` doesn't have authorization to create any successive events, so we avoid an infinite loop of commit, run workflows, commit, run workflows.
- --
- .. Add, commit and push the `antora-setup` branch to the repo. The workflow will commit the `package.json` and `package-lock.json` files into the root of the `antora-setup` branch of the repo.
- . Issue a pull request. This will pull in the `.json` files.
- . Edit the `main.yml` file by commenting out the "`Install default package.json`", "`Install Node`" and "`Install Antora`" commands.
- +
- ```
- # - name: Install default package.json
- # run: npm init --yes
- # - name: Install Node
- # run: npm i
- # - name: Install Antora
- # run: |
- # npm i @antora/[email protected]
- # npm i @antora/[email protected]
- # npm i asciidoctor-emoji
- ```
- .. Add, commit and push the `antora-setup` branch to the repo.
- . In the Atom Editor:
- .. Edit the `package.json` file.
- +
- --
- .package.json
- [source, .json]
- ----
- {
- "version": "1.0.1",
- "description": "jMonkeyEngine Documentation",
- "scripts": {
- "buildDocs": "$(npm bin)/antora --stacktrace wiki-playbook.yml"
- },
- "private": true,
- "license": "BSD-3-Clause",
- }
- ----
- NOTE: See: link:https://nodejs.dev/learn/the-package-json-guide[The Package Json Guide], and link:https://nodejs.dev/learn/the-package-lock-json-file[The package-lock.json file] for info on the properties that can be set and their meaning.
- --
- - [x] Bump `"version": "1.0.1"`.
- - [x] Fix the description.
- - [x] Remove `test` from the scripts property.
- - [x] Add the `buildDocs` script.
- - [x] Add the `"private": true,` property.
- - [x] Change the license.
- .. Edit the `package-lock.json` file:
- - [x] Bump `"version": "1.0.1"`.
- .. Stage, commit and push the `package.json` and `package-lock.json` files to the repo.
- == Preparing Test Site
- We only need this step for a repository imported from the wiki, skip otherwise.
- . From the (GWI).
- .. Switch to the `gh-pages` branch and delete the `CNAME` file.
- .. Commit the changes.
- .. In the `Settings` tab, set the newly created branch as the "`Source`" under the GitHub Pages settings. The link box for the site will change color to green, indicating it is configured.
- +
- This will be the branch we deploy the site to using the "`Deploy Docs`" command in the `main.yml` file.
- == Setup Antora
- Add the configuration files. Once complete, our final source structure will look like so.
- ```
- |-docs
- | |-modules
- | | |-ROOT
- | | |-nav.adoc
- | | |-images
- | | |-pages
- | | |-resources
- | |-antora.yml
- |-wiki-playbook.yml
- ```
- . From the Atom Editor:
- .. Add the initial `wiki-playbook.yml` file to the root of the repo.
- +
- --
- .Initial wiki-playbook.yml
- ```
- site:
- title: jMonkeyEngine Docs
- url: https://wiki.jmonkeyengine.org
- robots: allow
- start_page: docs::documentation.adoc
- content:
- sources:
- - url: .
- branches: [antora-setup]
- start_path: docs
- - url: https://github.com/jMonkeyEngine/wiki-ui
- branches: HEAD
- start_path: docs
- ui:
- bundle:
- url: https://github.com/jMonkeyEngine/wiki-ui/releases/latest/download/ui-bundle.zip
- # Required when using cache or fetch will not update ui.
- snapshot: true
- asciidoc:
- # Some built-in AsciiDoc attributes are not applicable in the Antora
- # environment. These attributes include data-uri, allow-uri-read, docinfo,
- # linkcss, noheader, nofooter, webfonts, and outfilesuffix.
- attributes:
- # previous and next page navigation, uses nav.adoc
- page-pagination: ''
- idprefix: ''
- idseparator: '-'
- #add an <orgname> element
- orgname: 'jMonkeyEngine'
- # Site wide setting of javaDoc url. Soft set using '@' allows override at
- # component and page level.
- link-javadoc: 'https://javadoc.jmonkeyengine.org/v3.4.1-stable@'
- # Enables the UI macros (button, menu and kbd)
- experimental: ''
- # Adds an anchor in front of the section title when the mouse cursor hovers
- # over it.
- :sectanchors: ''
- extensions:
- # Twitter Emoji
- # see: https://github.com/Mogztter/asciidoctor-emoji
- - asciidoctor-emoji
- runtime:
- cache_dir: ./.cache/antora
- fetch: true
- ```
- NOTE: See: link:https://docs.antora.org/antora/2.3/playbook/set-up-playbook/[Set Up a Playbook] for detailed `key: value` explanations.
- IMPORTANT: The branches key is set to `antora-setup`. The link:{attachmentsdir}/wiki-playbook.yml[wiki-playbook.yml] in the `transition-docs `module is set to use the `master` branch for versioning.
- --
- .. Add the link:{attachmentsdir}/antora.yml[antora.yml] file to the `docs` folder. It must be located next to the `modules` folder.
- +
- .antora.yml
- ```
- name: docs
- title: Docs
- version: master
- start_page: ROOT:documentation.adoc
- nav:
- - modules/ROOT/nav.adoc
- ```
- .. Add the `nav.adoc` file to the `docs/modules/ROOT` folder. It must be in the top-level of the `ROOT` folder.
- +
- .nav.adoc
- [source, text]
- ----
- * <<documentation#,Getting Started>>
- * {link-javadoc}[JavaDoc]
- * <<jme3#,jMonkeyEngine 3>>
- ** Beginner Tutorials
- *** <<jme3/beginner/hello_simpleapplication#,Hello SimpleApplication>>
- *** <<jme3/beginner/hello_node#,Hello Node>>
- *** <<jme3/beginner/hello_asset#,Hello Asset>>
- *** <<jme3/beginner/hello_main_event_loop#,Hello Main Event Loop>>
- *** <<jme3/beginner/hello_input_system#,Hello Input System>>
- *** <<jme3/beginner/hello_material#,Hello Material>>
- *** <<jme3/beginner/hello_animation#,Hello Animation>>
- *** <<jme3/beginner/hello_picking#,Hello Picking>>
- *** <<jme3/beginner/hello_collision#,Hello Collision>>
- *** <<jme3/beginner/hello_terrain#,Hello Terrain>>
- *** <<jme3/beginner/hello_audio#,Hello Audio>>
- *** <<jme3/beginner/hello_effects#,Hello Effects>>
- *** <<jme3/beginner/hello_physics#,Hello Physics>>
- ** Intermediate Tutorials
- *** Concepts
- **** <<jme3/intermediate/best_practices#,Best Practices>>
- **** <<jme3/intermediate/simpleapplication#,Simple Application>>
- **** <<jme3/features#,Features>>
- **** <<jme3/intermediate/optimization#,Optimization>>
- **** <<jme3/faq#,FAQ>>
- *** Math Concepts
- **** <<jme3/math_for_dummies#,Math For Dummies>>
- **** <<jme3/intermediate/math#,Math>>
- **** <<jme3/math#,More Math>>
- **** <<jme3/rotate#,Rotate>>
- **** <<jme3/math_video_tutorials#,Math Video Tutorials>>
- *** 3D Graphics Concepts
- **** <<jme3/intermediate/multi-media_asset_pipeline#,Multi-Media Asset Pipeline>>
- **** <<jme3/scenegraph_for_dummies#,Scenegraph for Dummies>>
- **** <<jme3/beginner/hellovector#,Hello Vector>>
- **** <<jme3/terminology#,Terminology>>
- **** <<jme3/intermediate/how_to_use_materials#,How to Use Materials>>
- **** <<jme3/intermediate/transparency_sorting#,Transparency and Sorting>>
- **** <<jme3/external/blender#,Importing from Blender>>
- **** <<jme3/external/3dsmax#,Importing from 3DS Max>>
- * <<logo#,Logo Usage>>
- * <<bsd_license#,License>>
- * <<github_tips#,Github Tips>>
- .SDK
- * <<sdk#,jMonkeyEngine SDK>>
- ----
- .. Stage, commit and push everything to the repo.
- . From the (CLI):
- .. Edit the main.yml file, uncommenting the `Run with CI`, `Build Docs`, `Copy Tutorials`, `Deploy Docs` commands. If this is for the official wiki site, uncomment the `cname` key as well.
- +
- ```
- - name: Run with CI
- run: npm ci
- - name: Build Docs
- run: npm run buildDocs
- # Antora will not copy folders outside the family tree so we move the
- # resources into the build/site folder so the peaceiris action will commit
- # the files.
- - name: Copy Tutorials
- run: cp -r ./docs/modules/ROOT/resources/* ./build/site/
- - name: Deploy Docs
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- # Commits these files to gh-pages if and only if there are changes.
- publish_dir: ./build/site
- # Insert CNAME for repository.
- cname: wiki.jmonkeyengine.org
- ```
- .. Add, commit and push the `antora-setup` branch to the repo.
- The build will succeed but if we examine the log file we find that the emoji.adoc page is broken. This is due to format changes using the new emoji macro.
- . Issue a pull request from the Atom Editor.
- . To save time, replace the `docs/modules/ROOT/pages/wiki/emoji.adoc` file with the `emoji.adoc` file found inside `transition-docs` module.
- We are now down to one last set of warnings that need attention. When we examine the build log we see:
- [source, text]
- ----
- WARNING: skipping reference to missing attribute: home
- WARNING: skipping reference to missing attribute: appname
- WARNING: skipping reference to missing attribute: home
- WARNING: skipping reference to missing attribute: appname
- WARNING: skipping reference to missing attribute: 0
- WARNING: skipping reference to missing attribute: 1
- WARNING: skipping reference to missing attribute: 2
- ----
- The `home` and `appname` missing attributes are due to unescaped content in the `docs/modules/ROOT/pages/sdk/update_center.adoc` file. This folder will be removed in the future but to stop the errors for now, fix the offending content.
- . Escape one of the brackets in each string `$pass:[{]HOME}` and `$pass:[{]APPNAME}`.
- +
- ```
- "`$pass:[{]HOME}/.$pass:[{]APPNAME}/version`"
- "`$pass:[{]HOME}/.$pass:[{]APPNAME}/nightly`"
- ```
- . The second set of warning comes from the `docs/modules/ROOT/pages/jme3/advanced/logging.adoc` file. To fix this, look for and escape the string `++{0},{1},{2}++`.
- +
- ```
- `++{0},{1},{2}++`
- ```
- . Stage, commit and push everything to the repo after editing.
- == Cleanup
- Delete the following from the `antora-setup` branch:
- - [x] .editorconfig
- - [x] .gitignore
- - [x] .travis.yml
- - [x] build.gradle
- - [x] deploy_ghpages.sh
- - [x] gradlew
- - [x] gradle.bat
- - [x] src directory (slim templates)
- - [x] lib directory
- - [x] gradle/wrapper
- . Add the new README.adoc file from the `transition-docs` module to the root of the repository.
- . Stage, commit and push everything to the repo after editing.
- == Merge to Master
- Once testing reveals everything is correctly setup, change the following settings to prepare for the final step of merging the antora-setup branch into master.
- . Change the following settings:
- .. Set the `branches:` value `antora-setup` to `master`
- +
- --
- .main.yml
- ```
- on:
- push:
- branches: '*'
- ```
- and remove the `ref: antora-setup` from the `Clone the repo` command.
- ```
- steps:
- - name: Clone the repo
- uses: actions/checkout@v2
- with:
- # Number of commits to fetch. 0 indicates all history.
- fetch-depth: 1
- ```
- --
- .. Set the `branches: [antora-setup]` value in the `wiki-playbook.yml` to point to HEAD.
- +
- ```
- content:
- sources:
- - url: .
- branches: HEAD
- ```
- . Add, commit and push the `antora-setup` branch to the repository.
- . Checkout the master branch, merge the `antora-setup` branch to `master` and push to the repository.
- +
- ```
- git checkout master
- git merge antora-setup
- git push origin master
- ```
- . Delete the `antora-setup` setup branch.
- +
- ```
- git push -d origin antora-setup
- ```
- == Post Rename Cache Commit
- After the branch rename, change the workflow file `EndBug/add-and-commit@v4` "`add`" command to commit the cache upon changes.
- ```
- # Commits these files to root if and only if there are changes.
- add: "package-lock.json package.json ./.cache/antora/*"
- ```
- After add, commit and pushing the workflow file, the cache will be committed to the repository master branch.
|