Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
open-source
WP.org Plugin Deploy
Commits
0a88d0c1
Commit
0a88d0c1
authored
Apr 13, 2019
by
Erick Hitter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add (deprecated) loader script
parent
74d42324
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
README.md
README.md
+9
-0
scripts/loader.sh
scripts/loader.sh
+20
-0
No files found.
README.md
View file @
0a88d0c1
...
...
@@ -4,6 +4,9 @@ Deploy plugin updates to WordPress.org's plugin SVN. Modeled on [10up's GitHub a
## Configuration
1.
Add the
`.gitlab-ci.yml`
configuration described below.
1.
Set the environment variables in the GitLab project.
### `.gitlab-ci.yml`
Add the following to the plugin's
`.gitlab-ci.yml`
:
...
...
@@ -15,6 +18,8 @@ PluginSVN:
before_script
:
-
apt-get update
-
apt-get install -y rsync
-
curl -o ./bin/deploy.sh https://git-cdn.e15r.co/open-source/wp-org-plugin-deploy/raw/master/scripts/deploy.sh
-
chmod +x ./bin/deploy.sh
script
:
./bin/deploy.sh
when
:
on_success
```
...
...
@@ -37,3 +42,7 @@ Set the following environment variables in the GitLab project's configuration:
*
`PLUGIN_SLUG`
- plugin's name on WordPress.org
*
`PLUGIN_VERSION`
- version to tag
*
`WP_ORG_RELEASE_REF`
- commit ref (branch or tag) to use for release
### Alternatives
A
[
loader script
](
./scripts/loader.sh
)
is available as an alternative to downloading the deploy script during the
`before_script`
stage.
scripts/loader.sh
0 → 100755
View file @
0a88d0c1
#!/usr/bin/env bash
# Note that this does not use pipefail
# because if the grep later doesn't match any deleted files,
# which is likely the majority case,
# it does not exit with a 0, and I only care about the final exit.
set
-eo
# Download shared script and execute.
# See https://git.ethitter.com/open-source/wp-org-plugin-deploy/blob/master/README.md
DEPLOY_SCRIPT_SRC
=
"https://git-cdn.e15r.co/open-source/wp-org-plugin-deploy/raw/master/scripts/deploy.sh"
DEPLOY_SCRIPT_NAME
=
"deploy-wp-org.sh"
echo
"ℹ︎ Downloading script from
$DEPLOY_SCRIPT_SRC
"
curl
-o
"./
${
DEPLOY_SCRIPT_NAME
}
"
"
$DEPLOY_SCRIPT_SRC
"
chmod
+x
"./
${
DEPLOY_SCRIPT_NAME
}
"
echo
"ℹ︎ Running
$DEPLOY_SCRIPT_NAME
"
bash
"./
${
DEPLOY_SCRIPT_NAME
}
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment