Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kidswiss committed Aug 28, 2024
1 parent dbe4f4a commit dc4d367
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/vshn/appcat-cookiecutter",
"commit": "44bbefeb243c8c59dc05711668435dedc11e8c99",
"commit": "4a2639224e6a67b1a0aada1652a29d0bc3624bf8",
"checkout": "add/upbound_push",
"context": {
"cookiecutter": {
Expand Down
18 changes: 16 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
env:
APP_NAME: provider-exoscale
COMPONENT_REPO: vshn/component-appcat
UPBOUND_PUSH: True

jobs:
check-labels:
Expand Down Expand Up @@ -53,8 +54,21 @@ jobs:
- name: Build branch and push AppCat
run: make docker-push-branchtag

- name: Build branch and push Functions
run: make function-push-package-branchtag
- name: Build branch and push package
run: make package-push-branchtag

- name: Login to Upbound
if: env.UPBOUND_PUSH
uses: docker/login-action@v1
with:
registry: xpkg.upbound.io
username: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR }}
password: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW }}

- name: Build branch and push package to upbound
if: env.UPBOUND_PUSH
run: make package-push-upbound-branchtag

open-pr-component:
if: github.event.action == 'opened'
runs-on: ubuntu-latest
Expand Down

0 comments on commit dc4d367

Please sign in to comment.