-
Notifications
You must be signed in to change notification settings - Fork 40
Update: Pantheon Upstream
BWPanda edited this page Feb 17, 2023
·
1 revision
Instructions to deploy a new Backdrop CMS release tag to the
/backdrop-ops/backdrop-pantheon upstream.
-
Clone the
backdrop-pantheonrepo to your local dev environmentgit clone git@github.com:backdrop-ops/backdrop-pantheon.git- Add
/backdrop/backdropas a tracked remotegit remote add core git@github.com:backdrop/backdrop.git
-
The resulting
.git/configshould have an entry like this:
[remote "core"]
url = git@github.com:backdrop/backdrop.git
fetch = +refs/heads/*:refs/remotes/core/*
- Change directories to your clone of the
backdrop-ops/backdrop-pantheonrepocd {path/to/backdrop-pantheon}
- Pull down the changes from
backdrop/backdroprepogit fetch core
- Checkout the master branch of
backdrop-ops/backdrop-pantheongit checkout master
- Merge the latest Backdrop release tag into
master- You can list the tags with
git tag -l - If for example we are releasing version
1.5.1the command would be:git merge 1.5.1
- You can list the tags with
- Now push to the
backdrop-ops/backdrop-pantheonrepogit push origin master
- The new release of Backdrop CMS is now available to Pantheon users!