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

Remove args from the runs section in the metadata file #14

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 1 addition & 13 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
GIT_SSH_COMMAND: "ssh -i ${HOME}/.ssh/id_rsa -F /dev/null -o StrictHostKeyChecking=no"
2 changes: 1 addition & 1 deletion image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL "com.github.actions.icon"="send"
LABEL "com.github.actions.color"="blue"

LABEL maintainer="10upbot <[email protected]>"
LABEL version="1.0.0"
LABEL version="1.0.2"
LABEL repository="https://github.com/10up/pantheon-wp-deploy-action"

RUN apt-get update \
Expand Down
Loading