-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #491 from hkad98/release-docs
TRIVIAL: document release process Reviewed-by: Jan Soubusta https://github.com/jaceksan
- Loading branch information
Showing
2 changed files
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,19 +87,20 @@ jobs: | |
done | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# create-release-branch: | ||
# needs: | ||
# - bump-version | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# - name: Create documentation rel/${{ github.event.inputs.bump_type }} branch | ||
# run: | | ||
# git config user.name GitHub Actions | ||
# git config user.email [email protected] | ||
# git checkout -b rel/${{ needs.bump-version.outputs.new_version }} | ||
# git push origin rel/${{ needs.bump-version.outputs.new_version }} | ||
create-release-branch: | ||
needs: | ||
- bump-version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Create documentation rel/${{ github.event.inputs.bump_type }} branch | ||
run: | | ||
git config user.name GitHub Actions | ||
git config user.email [email protected] | ||
git checkout -b rel/${{ needs.bump-version.outputs.new_version }} | ||
git push origin rel/${{ needs.bump-version.outputs.new_version }} | ||
# TODO: this part waits for docs build and publish optimization it takes too long (~15 minutes) | ||
# trigger-release: | ||
# needs: | ||
# - bump-version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters