diff --git a/.github/workflows/web-ui-automation.yaml b/.github/workflows/web-ui-automation.yaml index 9a9e4be0..5864fa63 100644 --- a/.github/workflows/web-ui-automation.yaml +++ b/.github/workflows/web-ui-automation.yaml @@ -121,33 +121,4 @@ jobs: with: find: ${{ steps.previous_shasum.outputs.SHASUM }} replace: ${{ needs.build_and_release.outputs.new_sha }} - include: "prysm_repo/WORKSPACE" - - - name: Setup bazel - uses: jwlawson/actions-setup-bazel@v1 - with: - bazel-version: '5.4.0' - - - name: Run Bazel - run: cd prysm_repo && bazel build //validator/web:site_data - - - name: Copy build site data - run: cd prysm_repo && cp bazel-bin/validator/web/site_data.go ./validator/web/site_data.go - - - name: Run go FMT - run: cd prysm_repo && gofmt -w -s ./validator/web/site_data.go - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 - with: - commit-message: Web-ui-version-${{ steps.current_version.outputs.TAG }}-commit - title: 'Prysm Web UI Release ${{ steps.current_version.outputs.TAG }}' - body: > - This PR is auto-generated by - [create-pull-request](https://github.com/peter-evans/create-pull-request). - labels: automated pr - path: prysm_repo - #reviewers: rauljordan, james-prysm - token: ${{ secrets.PAToken }} - branch: prysm-web-ui-${{ steps.current_version.outputs.TAG }} - base: develop \ No newline at end of file + include: "prysm_repo/WORKSPACE" \ No newline at end of file diff --git a/README.md b/README.md index dd7a8d1a..f9d655b2 100644 --- a/README.md +++ b/README.md @@ -78,3 +78,9 @@ Then, do You should see protos being regenerated under `./src/app/proto`, which will be used as the types in our frontend application. +## Steps to create release + +1. Once all commits are added to master, update the `CHANGELOG.md` file for all the associated changes. +2. Create a version tag against master and push the new version tag. This will trigger the git action workflow. +3. Follow README.md instructions on the [prysm repo](https://github.com/prysmaticlabs/prysm/tree/develop/validator/web) to update the validator client with the new UI. +