Skip to content

Commit 6cb00fa

Browse files
committed
Added TagBot to generate releases automatically
1 parent b84cd8f commit 6cb00fa

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/TagBot.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MicroFloatingPoints"
22
uuid = "6e0295d3-a2ae-4d9e-ab31-7b55fc0f4333"
33
authors = ["Frédéric Goualard <[email protected]>"]
4-
version = "1.5.1"
4+
version = "1.5.2"
55

66
[deps]
77
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

0 commit comments

Comments
 (0)