-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (39 loc) · 1 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: release
on:
push:
branches: [master]
jobs:
build_dfly:
runs-on: ubuntu-latest
name: Release build and tests on dfly
steps:
- uses: actions/checkout@v3
- name: Build and test in DragonFly BSD
id: build-test-dfly
uses: vmactions/dragonflybsd-vm@v1
with:
mem: 4096
usesh: true
prepare: |
pkg install -y go curl
run: |
make ci
make test
release:
runs-on: [ubuntu-latest]
needs: build_dfly
name: Release
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GH_TOKEN }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}