diff --git a/CHANGELOG.md b/CHANGELOG.md index 828e660..2d05053 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/). +## [v1.0.2] - 2024-08-05 + +### Changed + +- Delete `args` from the `runs` section in the `action.yml` file +- Update the `README.md` file to document the inclusion of the Pantheon MU Plugins in the payload/artifact + ## [v1.0.1] - 2024-06-13 ### Changed diff --git a/README.md b/README.md index ccf5a21..b9170ec 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ * This Github action expects a payload/artifact containing a fully built WordPress site with the following structure: * WordPress root files at the top level. e.g. `pantheon.yml`, `wp-config.php`, etc * Plugins, MU Plugins, drop-in plugins, Themes, `vendor` directory and everything that should go inside the `wp-content` directory(excluding the `uploads` directory) in a folder with the same name + * Install the [Pantheon MU Plugin](https://github.com/pantheon-systems/pantheon-mu-plugin) in inside the `wp-content/mu-plugins` directory # Inputs diff --git a/action.yml b/action.yml index d9e4893..1a52cca 100644 --- a/action.yml +++ b/action.yml @@ -46,16 +46,4 @@ runs: using: 'docker' image: 'docker://ghcr.io/10up/pantheon-wp-deploy-action:latest' env: - GIT_SSH_COMMAND: "ssh -i ${HOME}/.ssh/id_rsa -F /dev/null -o StrictHostKeyChecking=no" - args: - - ${{ inputs.pantheon_git_url }} - - ${{ inputs.multidev_env_name }} - - ${{ inputs.working_dir }} - - ${{ inputs.site_name }} - - ${{ inputs.terminus_token }} - - ${{ inputs.ssh_private_key }} - - ${{ inputs.wordpress_version }} - - ${{ inputs.root_files }} - - ${{ inputs.git_user_name }} - - ${{ inputs.git_user_email }} - - ${{ inputs.promote_test_to_live }} \ No newline at end of file + GIT_SSH_COMMAND: "ssh -i ${HOME}/.ssh/id_rsa -F /dev/null -o StrictHostKeyChecking=no" \ No newline at end of file diff --git a/image/Dockerfile b/image/Dockerfile index 93c55d7..a292693 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -8,7 +8,7 @@ LABEL "com.github.actions.icon"="send" LABEL "com.github.actions.color"="blue" LABEL maintainer="10upbot <10upbot+github@10up.com>" -LABEL version="1.0.0" +LABEL version="1.0.2" LABEL repository="https://github.com/10up/pantheon-wp-deploy-action" RUN apt-get update \