-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (27 loc) · 956 Bytes
/
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
name: release
on: [pull_request, workflow_dispatch]
jobs:
release:
runs-on: ubuntu-latest
steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Get the latest version
# id: latest
# uses: miniscruff/changie-action@v2
# with:
# version: latest
# args: latest
# - name: Release
# uses: softprops/action-gh-release@v2
# with:
# body_path: ".changes/${{ steps.latest.outputs.output }}.md"
# tag_name: "${{ steps.latest.outputs.output }}"
- name: Test
run: echo "token:" ${{ secrets.GITHUB_TOKEN }}
# - name: Release
# uses: softprops/action-gh-release@v2
# with:
# body: View full release notes in the [Changelog](https://github.com/bqbooster/dbt-bigquery-monitoring/blob/main/CHANGELOG.md)
# tag_name: v2 # currently no way of finding this in changie directly
# token: ${{ secrets.GITHUB_TOKEN }}