Skip to content

Commit 39cc39f

Browse files
committed
version 0.0.13
1 parent 32dab21 commit 39cc39f

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/ci-with-bnp.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,16 @@ jobs:
156156
157157
- name: Push Multi-Platform Package to GitHub Container Registry
158158
run: "./crossplane --verbose xpkg push --package-files $(echo *.xpkg|tr ' ' ,) ${{ env.XPKG }}:${{ env.XPKG_VERSION }}"
159+
160+
# push xpkg to Upbound
161+
- name: Install Upbound CLI
162+
run: curl -sL "https://cli.upbound.io" | sh
163+
164+
- name: Print Upbound CLI version
165+
run: ./up version --client
166+
167+
- name: Login to Upbound Registry
168+
run: up login --token ${{ secrets.UPBOUND_TOKEN }}
169+
170+
- name: Push Multi-Platform Package to Upbound registry
171+
run: "./up xpkg push -f $(echo *.xpkg|tr ' ' ,) ${{ env.XPKG }}:${{ env.XPKG_VERSION }}"

function/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"""The version of the function."""
1717

1818
# This is set at build time, using "hatch version"
19-
__version__ = "0.0.12"
19+
__version__ = "0.0.13"

0 commit comments

Comments
 (0)