- Make sure you have access to the
earthly-technologies
organization secrets../earthly secrets ls /earthly-technologies
- Make sure you have uploaded your aws credentials to your user secrets.
./earthly secrets get /user/earthly-technologies/aws/credentials
- Choose the next release tag.
export RELEASE_TAG="v..."
- Make sure you are on main
git checkout main && git pull
- If you are releasing a new major or minor version (
X.0.0
orX.X.0
), then you need to update the license text. Underlicenses/BSL
- Update the version under
Licensed Work
to point to the new version (without the.0
suffix) - Update the year (
(c) 2021
) to point to the current year - Update the
Change Date
to the first April 1st after a three year period. So if today is Jan 2077, then update to 2080-04-01. If it's June 2077, then update to 2081-04-01. - Commit this to the
main
branch before continuing.
- Update the version under
- Update the CHANGELOG.md with the corresponding release notes and open a PR
- Use a comparison such as https://github.com/earthly/earthly/compare/v0.3.0...main (replace the versions in the URL with the previously released version) to see which PRs will go into this release.
- Make sure that main build is green for all platforms (check build status for the latest commit on GitHub).
- Make sure nightly BuildKite builds are green for most recent build
Platform Status MacOS (x86) MacOS (M1) Windows (WSL) - Run
env -i HOME="$HOME" PATH="$PATH" SSH_AUTH_SOCK="$SSH_AUTH_SOCK" RELEASE_TAG="$RELEASE_TAG" ./release.sh
- Merge branch
main
intonext
, then merge branchnext
intomain
. - Update the version for the installation command in the following places:
- ci-integration.md
- circle-integration.md
- gh-actions-integration.md
- codebuild-integration.md
- gitlab-integration.md
- build-an-earthly-ci-image.md
- you can try doing that with:
REGEX='\(earthly\/releases\/download\/\)v[0-9]\+\.[0-9]\+\.[0-9]\+\(\/\)'; grep -Ril './docs/' -e $REGEX | xargs -n1 sed -i 's/'$REGEX'/\1'$RELEASE_TAG'\2/g'
- Update the pinned image tags used in the following places:
- you can try doing that with:
REGEX='\(\searthly\/\(buildkitd\|earthly\):\)v[0-9]\+\.[0-9]\+\.[0-9]\+'; grep -Ril './docs/' -e $REGEX | xargs -n1 sed -i 's/'$REGEX'/\1'$RELEASE_TAG'/g'
- Update the Docker image documentation's tags with the new version, plus the prior two image versions under:
- After GitBook has processed the
main
branch, run a broken link checker over https://docs.earthly.dev. This one is fast and easy: https://www.deadlinkchecker.com/. - Verify the Homebrew release job has successfully run and has merged the new
release-v...
branch intomain
. - Copy the release notes you have written before and paste them in the Earthly Community slack channel
#announcements
, together with a link to the release's GitHub page. If you have Slack markdown editing activated, you can copy the markdown version of the text. - Ask Adam to tweet about the release.
- Add new one-time items here.
To perform a test release to a personal repo, first:
- fork a copy of both
earthly/earthly
, andearthly/homebrew-earthly
- commit your changes you wish to release and push them to your personal repo.
- save a copy of your GitHub token to
+secrets/user/github-token
(e.g.earthly secrets set /user/github-token keep-it-secret
)
Then run:
RELEASE_TAG=v0.5.10 GITHUB_USER=mygithubuser DOCKERHUB_USER=mydockerhubuser EARTHLY_REPO=earthly BREW_REPO=homebrew-earthly GITHUB_SECRET_PATH=+secrets/user/github-token ./release.sh
NOTE: apt and yum repos do not currently support test releases. (TODO: fix this)
If the release-homebrew fails with a rejected git push, you may have to delete the remote branch by running the following under the interactive debugger:
git push "$GIT_USERNAME" --delete "release-$RELEASE_TAG"
If you need to rollback/disable a version:
- Go to GitHub releases, click on the
edit release
button, then check theThis is a prerelease
checkbox. - Check out the earthly/homebrew-earthly repo, and run:
git checkout main
git revert --no-commit 123abc..HEAD # where `123abc` is the sha1 commit to roll back to
git commit # enter a message saying you are rolling back
git push
- TODO need to create targets for apt and yum Earthfiles to perform rollbacks
Docker-in-Docker (dind) images change less frequently than earthly, but take a long time to build. These images can be rebuilt by running:
./earthly --push ./release+release-dind --RELEASE_TAG="$RELEASE_TAG"
- First set the version to publish:
(You can see what is already published)
export VSCODE_RELEASE_TAG="v..."
- Make sure that the version has release notes already in the README
- Then publish it:
./earthly \ --push \ ./release+release-vscode-syntax-highlighting \ --VSCODE_RELEASE_TAG="$VSCODE_RELEASE_TAG"
- Finally, tag git for future reference
git tag "vscode-syntax-highlighting-$VSCODE_RELEASE_TAG" git push origin "vscode-syntax-highlighting-$VSCODE_RELEASE_TAG"
(If token has expired, Vlad can regenerate one following this guide and then setting it using ./earthly secrets set /earthly-technologies/vsce/token '...'
)