-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: add GitHub actions to automatically build the package on tag v…
- Loading branch information
Showing
4 changed files
with
59 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 'Building release package' | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Upgrade pip and install required tools | ||
run: | | ||
pip install --upgrade pip | ||
pip install hatch | ||
- name: Detect build version | ||
run: echo "PKG_VERSION=$(hatch version)" >> "$GITHUB_ENV" | ||
|
||
- name: Build the package | ||
run: hatch -v build -t sdist | ||
|
||
- name: Log package content | ||
run: tar -tvf dist/econnect_alarm-$PKG_VERSION.tar.gz | ||
|
||
- name: Install the package | ||
run: pip install dist/econnect_alarm-$PKG_VERSION.tar.gz | ||
|
||
- name: Test if the package is built correctly | ||
run: python -c "import custom_components.econnect_alarm" | ||
|
||
- name: Upload release archive | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: econnect-alarm-${{ env.PKG_VERSION }}.tar.gz | ||
path: dist/econnect_alarm-${{ env.PKG_VERSION }}.tar.gz | ||
if-no-files-found: error |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ concurrency: | |
|
||
jobs: | ||
econnect: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
env: | ||
TOX_SKIP_ENV: lint | ||
|
||
|
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