forked from jcollie/octodns-netbox-dns
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7912997
commit 6b06cad
Showing
2 changed files
with
56 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: build and release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
pull_request: | ||
branches: [main, master] | ||
|
||
jobs: | ||
release-github: | ||
runs-on: ubuntu-latest | ||
env: | ||
HATCH_INDEX_REPO: main | ||
HATCH_INDEX_USER: __token__ | ||
HATCH_INDEX_AUTH: ${{ secrets.PACKAGE_TOKEN }} | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: install auto-changelog | ||
run: npm install -g auto-changelog | ||
|
||
- name: generate changelog | ||
run: >- | ||
auto-changelog -t keepachangelog | ||
--commit-limit 50 --backfill-limit 50 | ||
--ignore-commit-pattern '[Bb]ump version|[Uu]pdate changelog|[Mm]erge pull request' | ||
- name: get release notes | ||
id: release-notes | ||
uses: olofvndrhr/releasenote-gen@v1 | ||
|
||
- name: install hatch | ||
run: pip install -U hatch hatchling | ||
|
||
- name: build package | ||
run: hatch build --clean | ||
|
||
- name: create github release | ||
uses: ncipollo/release-action@v1 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
name: ${{ github.ref_name }} | ||
body: ${{ steps.release-notes.outputs.releasenotes }} | ||
artifacts: |- | ||
dist/** |