Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WP.org Plugin Deploy
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
WP.org Plugin Deploy
Commits
f19724f7
Commit
f19724f7
authored
5 years ago
by
Erick Hitter
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix/tag-updates' into 'master'
Support tag updates See merge request
!8
parents
8a122704
9b992faa
No related branches found
Branches containing commit
No related tags found
1 merge request
!8
Support tag updates
Pipeline
#813
passed with stage
in 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/deploy.sh
+23
-13
23 additions, 13 deletions
scripts/deploy.sh
with
23 additions
and
13 deletions
scripts/deploy.sh
+
23
−
13
View file @
f19724f7
...
...
@@ -8,7 +8,7 @@ set -eo
# Provide a basic version identifier, particularly since this script
# is usually accessed via CDN.
echo
"ℹ︎ WP-ORG-PLUGIN-DEPLOY VERSION: 201904140
1
"
echo
"ℹ︎ WP-ORG-PLUGIN-DEPLOY VERSION: 201904140
2
"
if
[[
-z
"
$CI
"
]]
;
then
echo
"𝘅︎ Script is only to be run by GitLab CI"
1>&2
...
...
@@ -43,14 +43,15 @@ if [[ -z "$WP_ORG_ASSETS_DIR" ]]; then
WP_ORG_ASSETS_DIR
=
".wordpress-org"
fi
echo
"ℹ︎ PLUGIN_SLUG:
$PLUGIN_SLUG
"
echo
"ℹ︎ PLUGIN_VERSION:
$PLUGIN_VERSION
"
echo
"ℹ︎ WP_ORG_RELEASE_REF:
$WP_ORG_RELEASE_REF
"
echo
"ℹ︎ WP_ORG_ASSETS_DIR:
$WP_ORG_ASSETS_DIR
"
echo
"ℹ︎ PLUGIN_SLUG:
$
{
PLUGIN_SLUG
}
"
echo
"ℹ︎ PLUGIN_VERSION:
$
{
PLUGIN_VERSION
}
"
echo
"ℹ︎ WP_ORG_RELEASE_REF:
$
{
WP_ORG_RELEASE_REF
}
"
echo
"ℹ︎ WP_ORG_ASSETS_DIR:
$
{
WP_ORG_ASSETS_DIR
}
"
SVN_URL
=
"https://plugins.svn.wordpress.org/
${
PLUGIN_SLUG
}
/"
SVN_DIR
=
"
$CI_BUILDS_DIR
/svn-
${
PLUGIN_SLUG
}
"
TMP_DIR
=
"
$CI_BUILDS_DIR
/git-archive"
SVN_DIR
=
"
${
CI_BUILDS_DIR
}
/svn-
${
PLUGIN_SLUG
}
"
SVN_TAG_DIR
=
"
${
SVN_DIR
}
/tags/
${
PLUGIN_VERSION
}
"
TMP_DIR
=
"
${
CI_BUILDS_DIR
}
/git-archive"
# Limit checkouts for efficiency
echo
"➤ Checking out dotorg repository..."
...
...
@@ -58,7 +59,7 @@ svn checkout --depth immediates "$SVN_URL" "$SVN_DIR"
cd
"
$SVN_DIR
"
svn update
--set-depth
infinity assets
svn update
--set-depth
infinity trunk
svn update
--set-depth
infinity
"
tags/
${
PLUGIN_VERSION
}
"
svn update
--set-depth
infinity
"
$SVN_TAG_DIR
"
# Ensure we are in the $CI_PROJECT_DIR directory, just in case
echo
"➤ Copying files..."
...
...
@@ -68,8 +69,8 @@ git config --global user.email "git-contrib+ci@ethitter.com"
git config
--global
user.name
"Erick Hitter (GitLab CI)"
# If there's no .gitattributes file, write a default one into place
if
[[
!
-e
"
$CI_PROJECT_DIR
/.gitattributes"
]]
;
then
cat
>
"
$CI_PROJECT_DIR
/.gitattributes"
<<-
EOL
if
[[
!
-e
"
$
{
CI_PROJECT_DIR
}
/.gitattributes"
]]
;
then
cat
>
"
$
{
CI_PROJECT_DIR
}
/.gitattributes"
<<-
EOL
/
${
WP_ORG_ASSETS_DIR
}
export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
...
...
@@ -91,6 +92,13 @@ cd "$SVN_DIR"
# The --delete flag will delete anything in destination that no longer exists in source
rsync
-r
"
$TMP_DIR
/"
trunk/
--delete
# If tag already exists, update from trunk.
# Generally, this applies when bumping WP version compatibility.
if
[[
-d
"
$SVN_TAG_DIR
"
]]
;
then
echo
"➤ Updating existing tag..."
rsync
-r
trunk/
"
$SVN_TAG_DIR
"
--delete
fi
# Copy dotorg assets to /assets
rsync
-r
"
${
CI_PROJECT_DIR
}
/
${
WP_ORG_ASSETS_DIR
}
/"
assets/
--delete
...
...
@@ -104,9 +112,11 @@ svn add . --force > /dev/null
# Also suppress stdout here
svn status |
grep
'^\!'
|
sed
's/! *//'
| xargs
-I
% svn
rm
%
>
/dev/null
# Copy tag locally to make this a single commit
echo
"➤ Copying tag..."
svn
cp
"trunk"
"tags/
$PLUGIN_VERSION
"
# Copy new tag locally to make this a single commit
if
[[
!
-d
"
$SVN_TAG_DIR
"
]]
;
then
echo
"➤ Copying tag..."
svn
cp
"trunk"
"
$SVN_TAG_DIR
"
fi
svn status
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment