Compare commits

...

6 Commits

Author SHA1 Message Date
giles 7ab90419af build/rebase-15 -> develop/rebase-15
build-develop-branch / build-branch (push) Successful in 36s Details
build-develop-branch / delete (pull_request) Successful in 15s Details
build-develop-branch / if_merged (pull_request) Failing after 22s Details
2023-10-23 16:19:08 +00:00
gilesb 57b8b1a122 .. 2023-10-23 16:19:08 +00:00
gilesb 113d41d50a . 2023-10-23 16:19:08 +00:00
gilesb 2cd7383c3d . 2023-10-23 16:19:08 +00:00
gilesb a52a41e1b2 . 2023-10-23 16:19:08 +00:00
gilesb f95795e0e5 ... 2023-10-23 16:19:08 +00:00
1 changed files with 14 additions and 0 deletions

View File

@ -36,6 +36,20 @@ jobs:
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with: with:
token: ${{ secrets.BOT_TOKEN }} token: ${{ secrets.BOT_TOKEN }}
- name: Bump version and push tag
id: tag_version
uses: miguelfito/github-bump-and-tag-action@v1
with:
github_token: ${{ secrets.BOT_TOKEN }}
- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: Release ${{ steps.tag_version.outputs.new_tag }}
body: "wahey"
- name: delete develop branch - name: delete develop branch
id: delete_develop_branch id: delete_develop_branch
run: git push origin --delete ${{ github.head_ref }} run: git push origin --delete ${{ github.head_ref }}