1# The purpose of this workflow is to orchestrate Wasmtime's release process as 2# much as possible. This specific workflow is responsible for a few timed parts 3# of the process: 4# 5# * On the 5th of every month a new release branch is automatically created and 6# the version number of the `main` branch is increased 7# * On the 20th of every month the previous release branch is published. 8# 9# This automation is all done through PRs except for the creation of the release 10# branch itself which is an write-action performed by this script. Otherwise 11# humans are ideally reviewing and rubber-stamping the output of the script all 12# other steps of the way. 13# 14# Note that this script also helps manage patch releases by sending a PR to the 15# release branch with a bumped version number for all crates with a patch-bump. 16 17name: "Automated Release Process" 18on: 19 schedule: 20 # “At 00:00 on day-of-month 5.” 21 # 22 # https://crontab.guru/#0_0_5_*_* 23 - cron: '0 0 5 * *' 24 - cron: '0 0 20 * *' 25 26 # Allow manually triggering this request via the button at 27 # https://github.com/bytecodealliance/wasmtime/actions/workflows/release-process.yml 28 workflow_dispatch: 29 inputs: 30 action: 31 description: 'Publish script argument: "cut", "release-latest", or "release-patch"' 32 required: false 33 default: 'cut' 34 35jobs: 36 release_process: 37 if: "github.repository == 'bytecodealliance/wasmtime' || !github.event.schedule" 38 name: Run the release process 39 runs-on: ubuntu-latest 40 steps: 41 - uses: actions/checkout@v4 42 with: 43 submodules: true 44 - name: Setup 45 run: | 46 rustc scripts/publish.rs 47 git config user.name 'Wasmtime Publish' 48 git config user.email '[email protected]' 49 git remote set-url origin https://git:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${{ github.repository }} 50 51 - uses: ./.github/actions/install-rust 52 - uses: ./.github/actions/install-cargo-vet 53 54 - name: Bump major version number 55 run: | 56 set -ex 57 # Push the current contents of `main` to a new release branch 58 cur=$(./ci/print-current-version.sh) 59 git push origin HEAD:release-$cur 60 61 # Update version numbers and make a commit indicating that. Note that 62 # on merge this will not trigger a publish. 63 ./publish bump 64 num=$(./ci/print-current-version.sh) 65 66 # Add a new section to the release notes for the new version. 67 cp RELEASES.md backup-releases 68 sed "s/VERSION/$num/" ci/RELEASES-template.md > RELEASES.md 69 cat backup-releases >> RELEASES.md 70 rm backup-releases 71 72 # Update `cargo vet` entries for all the new crate versions 73 cargo vet 74 75 # Commit all of the above changes. 76 git commit -am "Bump Wasmtime to $num" 77 78 # Push the result to a branch and setup metadata for the step below 79 # that creates a PR 80 git push origin HEAD:ci/bump-to-$num 81 echo "PR_HEAD=ci/bump-to-$num" >> $GITHUB_ENV 82 echo "PR_TITLE=Bump Wasmtime to $num" >> $GITHUB_ENV 83 echo "PR_BASE=main" >> $GITHUB_ENV 84 cat > pr-body <<-EOF 85 This is an [automated pull request][process] from CI which indicates that the next [\`release-$cur\` branch][branch] has been created and the \`main\` branch is getting its version number bumped from $cur to $num. 86 87 Maintainers should take a moment to review the [release notes][RELEASES.md] for $cur, and if any changes are necessary send PRs to the \`main\` branch to update [RELEASES.md] and then backport these PRs to the [release branch][branch]. 88 89 Maintainers should also review that aarch64-apple-darwin builds are passing via [embark's CI](https://buildkite.com/embark-studios/wasmtime-aarch64-apple-darwin). 90 91 Another automated PR will be made in roughly 2 weeks time when for the actual release itself. 92 93 If any issues arise on the \`main\` branch before the release is made then the issue should first be fixed on \`main\` and then backport to the \`release-$cur\` branch. 94 95 [RELEASES.md]: https://github.com/${{ github.repository }}/blob/main/RELEASES.md 96 [branch]: https://github.com/${{ github.repository }}/tree/release-$cur 97 [process]: https://docs.wasmtime.dev/contributing-release-process.html 98 EOF 99 if: >- 100 github.event.schedule == '0 0 5 * *' || 101 github.event.inputs.action == 'cut' 102 103 - name: Perform latest release 104 run: | 105 set -ex 106 git fetch origin 107 108 # Determine the latest release branch 109 rustc ci/find-latest-release.rs -o /tmp/find-latest-release 110 cur=`/tmp/find-latest-release` 111 112 # Update the release date of $cur in RELEASES.md 113 rustc ci/update-release-date.rs -o /tmp/update-release-date 114 /tmp/update-release-date $(date +'%Y-%m-%d') 115 116 git commit --allow-empty -a -F-<<EOF 117 Update release date of Wasmtime $cur 118 EOF 119 git push origin HEAD:ci/release-date-for-$cur 120 121 # In addition to the PR we'll make below to perform the actual release 122 # make a second PR to the `main` branch to note the release date in 123 # the release notes. 124 cat > pr-body <<-EOF 125 This is an [automated pull request][process] from CI which is updating the release date of Wasmtime $cur to today. This PR's base branch is \`main\` and a second PR will be coming to perform the actual release which will be targeted at \`release-$cur\`. 126 127 [process]: https://docs.wasmtime.dev/contributing-release-process.html 128 EOF 129 body=$(jq -sR < ./pr-body) 130 curl --include --request POST \ 131 https://api.github.com/repos/${{ github.repository }}/pulls \ 132 --header "Authorization: token ${{ secrets.PERSONAL_ACCESS_TOKEN }}" \ 133 --data @- << EOF 134 { 135 "head": "ci/release-date-for-$cur", 136 "base": "main", 137 "title": "Update release date of Wasmtime $cur", 138 "body": $body, 139 "maintainer_can_modify": true 140 } 141 EOF 142 143 # Move to the most recent release branch, update the release date and 144 # commit it, indicating that the commit is what will get tagged and 145 # released 146 git reset --hard origin/release-$cur 147 git submodule update --init --recursive 148 sed -i "s/^Unreleased/Released $(date +'%Y-%m-%d')/" RELEASES.md 149 git commit --allow-empty -a -F-<<EOF 150 Release Wasmtime $cur 151 152 [automatically-tag-and-release-this-commit] 153 EOF 154 155 # Push the result to a branch and setup metadata for the step below 156 # that creates a PR 157 git push origin HEAD:ci/release-$cur 158 echo "PR_HEAD=ci/release-$cur" >> $GITHUB_ENV 159 echo "PR_TITLE=Release Wasmtime $cur" >> $GITHUB_ENV 160 echo "PR_BASE=release-$cur" >> $GITHUB_ENV 161 cat > pr-body <<-EOF 162 This is an [automated pull request][process] from CI which is intended to notify maintainers that it's time to release Wasmtime $cur. The [release branch][branch] was created roughly two weeks ago and it's now time for it to be published and released. 163 164 It's recommended that maintainers double-check that [RELEASES.md] is up-to-date and that there are no known issues before merging this PR. When this PR is merged a release tag will automatically created, crates will be published, and CI artifacts will be produced. 165 166 [RELEASES.md]: https://github.com/${{ github.repository }}/blob/main/RELEASES.md 167 [process]: https://docs.wasmtime.dev/contributing-release-process.html 168 [branch]: https://github.com/${{ github.repository }}/tree/release-$cur 169 EOF 170 if: >- 171 github.event.schedule == '0 0 20 * *' || 172 github.event.inputs.action == 'release-latest' 173 174 - name: Bump and release patch version number 175 run: | 176 set -ex 177 # Update version numbers on a patch basis and update RELEASES.md if a 178 # patch release marker is already in there. Note that this commit 179 # message indicates that on-merge a release will be made. 180 ./publish bump-patch 181 # Update `cargo vet` entries for all the new crate versions 182 cargo vet 183 sed -i "s/^Unreleased/Released $(date +'%Y-%m-%d')/" RELEASES.md 184 num=$(./ci/print-current-version.sh) 185 git commit -a -F-<<EOF 186 Release Wasmtime $num 187 188 [automatically-tag-and-release-this-commit] 189 EOF 190 191 # Push the result to a branch and setup metadata for the step below 192 # that creates a PR 193 git push origin HEAD:ci/bump-to-$num 194 echo "PR_HEAD=ci/bump-to-$num" >> $GITHUB_ENV 195 echo "PR_TITLE=Release Wasmtime $num" >> $GITHUB_ENV 196 echo "PR_BASE=${{ github.ref_name }}" >> $GITHUB_ENV 197 cat > pr-body <<-EOF 198 This is an [automated pull request][process] from CI to create a patch release for Wasmtime $num, requested by @${{ github.actor }}. 199 200 It's recommended that maintainers double-check that [RELEASES.md] is up-to-date and that there are no known issues before merging this PR. When this PR is merged a release tag will automatically be created, crates will be published, and CI artifacts will be produced. 201 202 [RELEASES.md]: https://github.com/${{ github.repository }}/blob/main/RELEASES.md 203 [process]: https://docs.wasmtime.dev/contributing-release-process.html 204 EOF 205 206 if: github.event.inputs.action == 'release-patch' 207 208 - name: Make a PR 209 # Note that the syntax here is kinda funky, and the general gist is that 210 # I couldn't figure out a good way to have a multiline string-literal 211 # become a json-encoded string literal to send to GitHub. This 212 # represents my best attempt. 213 run: | 214 set -ex 215 body=$(jq -sR < ./pr-body) 216 217 curl --include --request POST \ 218 https://api.github.com/repos/${{ github.repository }}/pulls \ 219 --header "Authorization: token ${{ secrets.PERSONAL_ACCESS_TOKEN }}" \ 220 --data @- << EOF 221 { 222 "head": "$PR_HEAD", 223 "base": "$PR_BASE", 224 "title": "$PR_TITLE", 225 "body": $body, 226 "maintainer_can_modify": true 227 228 } 229 EOF 230