Skip to content

Commit bc8c6fa

Browse files
committed
Merge branch 'release-v5.9.0'
2 parents dd61eaa + 2aa24f0 commit bc8c6fa

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

.github/release.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# .github/release.yml
2+
3+
changelog:
4+
exclude:
5+
labels:
6+
- ignore-for-release
7+
authors:
8+
- octocat
9+
- dependabot
10+
categories:
11+
- title: Breaking Changes 🛠
12+
labels:
13+
- Semver-Major
14+
- breaking-change
15+
- title: Exciting New Features 🎉
16+
labels:
17+
- Semver-Minor
18+
- enhancement
19+
- title: Other Changes
20+
labels:
21+
- "*"

.github/workflows/main.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,21 @@ jobs:
117117
echo CONTAINER_TAGS="${CONTAINER_TAGS}"
118118
echo ::set-output name=container_tags::${CONTAINER_TAGS}
119119
120-
- name: Publish Release Package
120+
- name: Publish Release to PyPi
121121
if: github.event.action == 'published'
122122
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
123123
with:
124124
user: __token__
125125
password: ${{ secrets.PYPI_API_TOKEN }}
126126

127+
- name: Attach Wheel Artifact to GH Release
128+
if: ${{ github.event.action == 'published' }}
129+
uses: softprops/action-gh-release@v1
130+
with:
131+
files: dist/netfoundry-*.whl
132+
fail_on_unmatched_files: true
133+
generate_release_notes: true
134+
127135
- name: Set up QEMU
128136
uses: docker/setup-qemu-action@master
129137
with:

netfoundry/ctl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def list(cli, spinner: object = None):
687687
'edgeRouterAttributes', 'serviceAttributes', 'endpointAttributes',
688688
'status', 'zitiId', 'provider', 'locationCode', 'ipAddress', 'networkVersion',
689689
'active', 'default', 'region', 'size', 'attributes', 'email', 'productVersion',
690-
'state', 'address', 'binding']
690+
'address', 'binding', 'component']
691691
valid_keys = set(matches[0].keys()) & set(default_columns)
692692

693693
if valid_keys:

0 commit comments

Comments
 (0)